A B C D E F G H I J K L M N O P Q R S T U V

A

AbstractBaseManager - Class in org.apache.torque.manager
This class contains common functionality of a Manager for instantiating OM's.
AbstractBaseManager() - Constructor for class org.apache.torque.manager.AbstractBaseManager
 
AbstractDataSourceFactory - Class in org.apache.torque.dsfactory
A class that contains common functionality of the factories in this package.
AbstractDataSourceFactory() - Constructor for class org.apache.torque.dsfactory.AbstractDataSourceFactory
 
AbstractDBAdapter - Class in org.apache.torque.adapter
This class is the abstract base for any database adapter Support for new databases is added by subclassing this class and implementing its abstract methods, and by registering the new database adapter and its corresponding JDBC driver in the service configuration file.
AbstractDBAdapter() - Constructor for class org.apache.torque.adapter.AbstractDBAdapter
Empty constructor.
AbstractFunction - Class in org.apache.torque.util.functions
A default framework that implements the core SQLFunction interface requirements that can be used to build specific functions on.
AbstractFunction() - Constructor for class org.apache.torque.util.functions.AbstractFunction
Functions should only be created via the FunctionFactory class.
ADAPTER_KEY - Static variable in interface org.apache.torque.adapter.DB
Key for the configuration which contains database adapters.
add(Criteria.Criterion) - Method in class org.apache.torque.util.Criteria
This method adds a prepared Criterion object to the Criteria.
add(String, Object) - Method in class org.apache.torque.util.Criteria
This method adds a new criterion to the list of criterias.
add(String, Object, SqlEnum) - Method in class org.apache.torque.util.Criteria
This method adds a new criterion to the list of criterias.
add(String, String, Object) - Method in class org.apache.torque.util.Criteria
This method adds a new criterion to the list of criterias.
add(String, String, Object, SqlEnum) - Method in class org.apache.torque.util.Criteria
This method adds a new criterion to the list of criterias.
add(String, boolean) - Method in class org.apache.torque.util.Criteria
Convenience method to add a boolean to Criteria.
add(String, boolean, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add a boolean to Criteria.
add(String, int) - Method in class org.apache.torque.util.Criteria
Convenience method to add an int to Criteria.
add(String, int, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add an int to Criteria.
add(String, long) - Method in class org.apache.torque.util.Criteria
Convenience method to add a long to Criteria.
add(String, long, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add a long to Criteria.
add(String, float) - Method in class org.apache.torque.util.Criteria
Convenience method to add a float to Criteria.
add(String, float, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add a float to Criteria.
add(String, double) - Method in class org.apache.torque.util.Criteria
Convenience method to add a double to Criteria.
add(String, double, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add a double to Criteria.
add(Object) - Method in class org.apache.torque.util.UniqueList
Adds an Object to the list.
addAggregate(String, SQLFunction) - Method in class org.apache.torque.util.SummaryHelper
Add in an Aggregate function to the summary information.
addAlias(String, String) - Method in class org.apache.torque.util.Criteria
Allows one to specify an alias for a table that can be used in various parts of the SQL.
addArgument(Object) - Method in class org.apache.torque.util.functions.AbstractFunction
Add an argument to the function argument list
addAscendingOrderByColumn(String) - Method in class org.apache.torque.util.Criteria
Add order by column name, explicitly specifying ascending.
addAsColumn(String, String) - Method in class org.apache.torque.util.Criteria
Add an AS clause to the select columns.
addCacheListenerImpl(CacheListener) - Method in class org.apache.torque.manager.AbstractBaseManager
 
addColumn(ColumnMap) - Method in class org.apache.torque.map.TableMap
Add a pre-created column to this table.
addColumn(String, Object) - Method in class org.apache.torque.map.TableMap
Deprecated. Associated Column maps should be populated using it's set methods, then added to table via addColumn(ColumnMap). This method will be removed in a future version of Torque.
addColumn(String, Object, int, int) - Method in class org.apache.torque.map.TableMap
Deprecated. Associated Column maps should be populated using it's set methods, then added to table via addColumn(ColumnMap). This method will be removed in a future version of Torque.
addColumn(String, Object, int) - Method in class org.apache.torque.map.TableMap
Deprecated. Associated Column maps should be populated using it's set methods, then added to table via addColumn(ColumnMap). This method will be removed in a future version of Torque.
addDate(String, int, int, int) - Method in class org.apache.torque.util.Criteria
Convenience method to add a Date object specified by year, month, and date into the Criteria.
addDate(String, int, int, int, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add a Date object specified by year, month, and date into the Criteria.
addDescendingOrderByColumn(String) - Method in class org.apache.torque.util.Criteria
Add order by column name, explicitly specifying descending.
addedObject(Persistent) - Method in interface org.apache.torque.manager.CacheListener
 
addForeignKey(String, Object, String, String) - Method in class org.apache.torque.map.TableMap
Deprecated. Associated Column maps should be populated using it's set methods, then added to table via addColumn(ColumnMap). This method will be removed in a future version of Torque.
addForeignKey(String, Object, String, String, int) - Method in class org.apache.torque.map.TableMap
Deprecated. Associated Column maps should be populated using it's set methods, then added to table via addColumn(ColumnMap). This method will be removed in a future version of Torque.
addForeignPrimaryKey(String, Object, String, String) - Method in class org.apache.torque.map.TableMap
Deprecated. Associated Column maps should be populated using it's set methods, then added to table via addColumn(ColumnMap). This method will be removed in a future version of Torque.
addForeignPrimaryKey(String, Object, String, String, int) - Method in class org.apache.torque.map.TableMap
Deprecated. Associated Column maps should be populated using it's set methods, then added to table via addColumn(ColumnMap). This method will be removed in a future version of Torque.
addGroupBy(String) - Method in class org.apache.torque.util.SummaryHelper
Add a column that will be used to group the aggregate results by.
addGroupByColumn(String) - Method in class org.apache.torque.util.Criteria
Add group by column name.
addHaving(Criteria.Criterion) - Method in class org.apache.torque.util.Criteria
This method adds a prepared Criterion object to the Criteria as a having clause.
addIdGenerator(String, IdGenerator) - Method in class org.apache.torque.Database
Adds an IdGenerator to the database.
addIdGenerator(String, IdGenerator) - Method in class org.apache.torque.map.DatabaseMap
Deprecated. use DatabaseInfo.addGenerator() instead. Will be removed in a future version of Torque.
addIn(String, Object[]) - Method in class org.apache.torque.util.Criteria
Adds an 'IN' clause with the criteria supplied as an Object array.
addIn(String, int[]) - Method in class org.apache.torque.util.Criteria
Adds an 'IN' clause with the criteria supplied as an int array.
addIn(String, List) - Method in class org.apache.torque.util.Criteria
Adds an 'IN' clause with the criteria supplied as a List.
addInheritanceMap(InheritanceMap) - Method in class org.apache.torque.map.ColumnMap
Add an associated inheritance mapping.
addJoin(String, String) - Method in class org.apache.torque.util.Criteria
This is the way that you should add a join of two tables.
addJoin(String, String, SqlEnum) - Method in class org.apache.torque.util.Criteria
This is the way that you should add a join of two tables.
addNotIn(String, Object[]) - Method in class org.apache.torque.util.Criteria
Adds a 'NOT IN' clause with the criteria supplied as an Object array.
addNotIn(String, int[]) - Method in class org.apache.torque.util.Criteria
Adds a 'NOT IN' clause with the criteria supplied as an int array.
addNotIn(String, List) - Method in class org.apache.torque.util.Criteria
Adds a 'NOT IN' clause with the criteria supplied as a List.
addPrimaryKey(String, Object) - Method in class org.apache.torque.map.TableMap
Deprecated. Associated Column maps should be populated using it's set methods, then added to table via addColumn(ColumnMap). This method will be removed in a future version of Torque.
addPrimaryKey(String, Object, int) - Method in class org.apache.torque.map.TableMap
Deprecated. Associated Column maps should be populated using it's set methods, then added to table via addColumn(ColumnMap). This method will be removed in a future version of Torque.
addSelectColumn(String) - Method in class org.apache.torque.util.Criteria
Add select column.
addTable(String) - Method in class org.apache.torque.map.DatabaseMap
Add a new table to the database by name.
addTable(String, int) - Method in class org.apache.torque.map.DatabaseMap
Add a new table to the database by name.
addTable(TableMap) - Method in class org.apache.torque.map.DatabaseMap
Add a new TableMap to the database.
Aggregate - Class in org.apache.torque.util.functions
A container for classes that will generate SQL for the SQL99 Standard Aggregate functions.
Aggregate() - Constructor for class org.apache.torque.util.functions.Aggregate
 
Aggregate.AgregateFunction - Class in org.apache.torque.util.functions
The base class for all the standard aggregate function classes.
Aggregate.AgregateFunction() - Constructor for class org.apache.torque.util.functions.Aggregate.AgregateFunction
Base constructor for aggregate functions which must be created via the FunctionFactory / DB classes.
Aggregate.Avg - Class in org.apache.torque.util.functions
SQL99 Standard Average a column function.
Aggregate.Avg() - Constructor for class org.apache.torque.util.functions.Aggregate.Avg
Construct an AVG function class.
Aggregate.Count - Class in org.apache.torque.util.functions
SQL99 Standard Count records function.
Aggregate.Count() - Constructor for class org.apache.torque.util.functions.Aggregate.Count
Construct a COUNT function class.
Aggregate.Max - Class in org.apache.torque.util.functions
SQL99 Standard maximum value of column function.
Aggregate.Max() - Constructor for class org.apache.torque.util.functions.Aggregate.Max
Construct a MAX function class.
Aggregate.Min - Class in org.apache.torque.util.functions
SQL99 Standard Minimum value of column function.
Aggregate.Min() - Constructor for class org.apache.torque.util.functions.Aggregate.Min
Construct a MIN function class.
Aggregate.Sum - Class in org.apache.torque.util.functions
SQL99 Standard sum column values function.
Aggregate.Sum() - Constructor for class org.apache.torque.util.functions.Aggregate.Sum
Construct a SUM function class.
ALL - Static variable in class org.apache.torque.util.Criteria
Comparison type.
ALL - Static variable in class org.apache.torque.util.SqlEnum
 
ALT_NOT_EQUAL - Static variable in class org.apache.torque.util.Criteria
Comparison type.
ALT_NOT_EQUAL - Static variable in class org.apache.torque.util.SqlEnum
 
and(Criteria.Criterion) - Method in class org.apache.torque.util.Criteria
This method adds a prepared Criterion object to the Criteria.
and(String, Object) - Method in class org.apache.torque.util.Criteria
This method adds a new criterion to the list of criterias.
and(String, Object, SqlEnum) - Method in class org.apache.torque.util.Criteria
This method adds a new criterion to the list of criterias.
and(String, String, Object) - Method in class org.apache.torque.util.Criteria
This method adds a new criterion to the list of criterias.
and(String, String, Object, SqlEnum) - Method in class org.apache.torque.util.Criteria
This method adds a new criterion to the list of criterias.
and(String, boolean) - Method in class org.apache.torque.util.Criteria
Convenience method to add a boolean to Criteria.
and(String, boolean, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add a boolean to Criteria.
and(String, int) - Method in class org.apache.torque.util.Criteria
Convenience method to add an int to Criteria.
and(String, int, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add an int to Criteria.
and(String, long) - Method in class org.apache.torque.util.Criteria
Convenience method to add a long to Criteria.
and(String, long, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add a long to Criteria.
and(String, float) - Method in class org.apache.torque.util.Criteria
Convenience method to add a float to Criteria.
and(String, float, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add a float to Criteria.
and(String, double) - Method in class org.apache.torque.util.Criteria
Convenience method to add a double to Criteria.
and(String, double, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add a double to Criteria.
AND - Static variable in class org.apache.torque.util.Criteria.Criterion
 
and(Criteria.Criterion) - Method in class org.apache.torque.util.Criteria.Criterion
Append an AND Criterion onto this Criterion's list.
andDate(String, int, int, int) - Method in class org.apache.torque.util.Criteria
Convenience method to add a Date object specified by year, month, and date into the Criteria.
andDate(String, int, int, int, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add a Date object specified by year, month, and date into the Criteria.
andIn(String, Object[]) - Method in class org.apache.torque.util.Criteria
Adds an 'IN' clause with the criteria supplied as an Object array.
andIn(String, int[]) - Method in class org.apache.torque.util.Criteria
Adds an 'IN' clause with the criteria supplied as an int array.
andIn(String, List) - Method in class org.apache.torque.util.Criteria
Adds an 'IN' clause with the criteria supplied as a List.
andNotIn(String, Object[]) - Method in class org.apache.torque.util.Criteria
Adds a 'NOT IN' clause with the criteria supplied as an Object array.
andNotIn(String, int[]) - Method in class org.apache.torque.util.Criteria
Adds a 'NOT IN' clause with the criteria supplied as an int array.
andNotIn(String, List) - Method in class org.apache.torque.util.Criteria
Adds a 'NOT IN' clause with the criteria supplied as a List.
appendPsTo(StringBuffer, List) - Method in class org.apache.torque.util.Criteria.Criterion
Appends a Prepared Statement representation of the Criterion onto the buffer.
appendTo(StringBuffer) - Method in class org.apache.torque.om.ComboKey
 
appendTo(StringBuffer) - Method in class org.apache.torque.om.ObjectKey
Appends a String representation of the key to a buffer.
appendTo(StringBuffer) - Method in class org.apache.torque.util.Criteria.Criterion
Appends a representation of the Criterion onto the buffer.
applyConfiguration(Configuration, Object) - Method in class org.apache.torque.dsfactory.AbstractDataSourceFactory
Iterate over a Configuration subset and apply all properties to a passed object which must contain Bean setter and getter
AS - Static variable in class org.apache.torque.util.SqlEnum
 
ASC - Static variable in class org.apache.torque.util.SqlEnum
 
AUTO_INCREMENT - Static variable in interface org.apache.torque.adapter.IDMethod
Key generation via auto-increment.
AutoIncrementIdGenerator - Class in org.apache.torque.oid
This generator works with databases that have an sql syntax that allows the retrieval of the last id used to insert a row for a Connection.
AutoIncrementIdGenerator(DB, String) - Constructor for class org.apache.torque.oid.AutoIncrementIdGenerator
Creates an IdGenerator which will work with the specified database.
AVG - Static variable in class org.apache.torque.util.functions.FunctionEnum
The AVG( [Distinct] EXPR ) function id
avg(String, Object, boolean) - Static method in class org.apache.torque.util.functions.FunctionFactory
Create an AVG SQL function implementation.
avg(Object) - Static method in class org.apache.torque.util.functions.FunctionFactory
Convenience method for creating a non-distinct function that uses the default DB.

B

BaseObject - Class in org.apache.torque.om
This class contains attributes and methods that are used by all business objects within the system.
BaseObject() - Constructor for class org.apache.torque.om.BaseObject
 
BasePeer - Class in org.apache.torque.util
This is the base class for all Peer classes in the system.
BasePeer() - Constructor for class org.apache.torque.util.BasePeer
 
BasePeer.ProcessCallback - Interface in org.apache.torque.util
Inner Interface that defines the Callback method for the Record Processing
begin() - Static method in class org.apache.torque.util.Transaction
Begin a transaction for the default database.
begin(String) - Static method in class org.apache.torque.util.Transaction
Begin a transaction.
beginOptional(String, boolean) - Static method in class org.apache.torque.util.Transaction
Begin a transaction.
build(String, Object, SqlEnum) - Static method in class org.apache.torque.util.SqlExpression
Builds a simple SQL expression.
build(String, Object, SqlEnum, boolean, DB) - Static method in class org.apache.torque.util.SqlExpression
Builds a simple SQL expression.
build(String, Object, SqlEnum, boolean, DB, StringBuffer) - Static method in class org.apache.torque.util.SqlExpression
Builds a simple SQL expression.
buildCriteria(Criteria) - Method in class org.apache.torque.util.SummaryHelper
Builds the criteria to use in summarizing the information.
buildInnerJoin(String, String) - Static method in class org.apache.torque.util.SqlExpression
Used to specify a join on two columns.
buildInnerJoin(String, String, boolean, DB) - Static method in class org.apache.torque.util.SqlExpression
Used to specify a join on two columns.
buildInnerJoin(String, String, boolean, DB, StringBuffer) - Static method in class org.apache.torque.util.SqlExpression
Used to specify a join on two columns.
buildQueryClause(Criteria, List, SQLBuilder.QueryCallback) - Static method in class org.apache.torque.util.SQLBuilder
Builds a Query clause for Updating and deleting
byteValue() - Method in class org.apache.torque.om.NumberKey
Returns the value of this NumberKey as a byte.

C

cache - Variable in class org.apache.torque.manager.AbstractBaseManager
used to cache the om objects.
CACHE_KEY - Static variable in class org.apache.torque.Torque
property to determine whether caching is used.
cacheGet(Serializable) - Method in class org.apache.torque.manager.AbstractBaseManager
Get an object from cache
CacheListener - Interface in org.apache.torque.manager
Listener for cache events
CLASSNAME_KEY - Static variable in class org.apache.torque.dsfactory.JndiDataSourceFactory
Key for the configuration property which contains the class name of the datasource to be bound into jndi.
clear() - Method in class org.apache.torque.manager.MethodResultCache
 
clear() - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
clear() - Method in class org.apache.torque.util.Criteria
Brings this criteria back to its initial state, so that it can be reused as if it was new.
clear() - Method in class org.apache.torque.util.SummaryHelper
Resets the class internal variables to their initial states so the class can be re-used like a new class.
clearImpl() - Method in class org.apache.torque.manager.AbstractBaseManager
Clears the cache
close() - Method in interface org.apache.torque.dsfactory.DataSourceFactory
A hook which is called when the resources of the associated DataSource can be released.
close() - Method in class org.apache.torque.dsfactory.JndiDataSourceFactory
Does nothing.
close() - Method in class org.apache.torque.dsfactory.PerUserPoolDataSourceFactory
Closes the pool associated with this factory and releases it.
close() - Method in class org.apache.torque.dsfactory.SharedPoolDataSourceFactory
Closes the pool associated with this factory and releases it.
close(TableDataSet) - Static method in class org.apache.torque.util.VillageUtils
Convenience Method to close a Table Data Set without Exception check.
close(QueryDataSet) - Static method in class org.apache.torque.util.VillageUtils
Convenience Method to close a Table Data Set without Exception check.
close(OutputStream) - Static method in class org.apache.torque.util.VillageUtils
Convenience Method to close an Output Stream without Exception check.
closeConnection(Connection) - Method in interface org.apache.torque.avalon.Torque
Closes a connection.
closeConnection(Connection) - Static method in class org.apache.torque.Torque
Closes a connection.
closeConnection(Connection) - Method in class org.apache.torque.TorqueInstance
Closes a connection.
COL_NEXT_ID - Static variable in class org.apache.torque.oid.IDBroker
Next_ID column name
COL_QUANTITY - Static variable in class org.apache.torque.oid.IDBroker
Quantity column name
COL_TABLE_ID - Static variable in class org.apache.torque.oid.IDBroker
ID column name
COL_TABLE_NAME - Static variable in class org.apache.torque.oid.IDBroker
Table_Name column name
COLUMN_CHARS - Static variable in class org.apache.torque.util.SQLBuilder
Function Characters
ColumnMap - Class in org.apache.torque.map
ColumnMap is used to model a column of a table in a database.
ColumnMap(String, TableMap) - Constructor for class org.apache.torque.map.ColumnMap
Constructor.
ComboKey - Class in org.apache.torque.om
This class can be used as an ObjectKey to uniquely identify an object within an application where the key consists of multiple entities (such a String[] representing a multi-column primary key).
ComboKey() - Constructor for class org.apache.torque.om.ComboKey
Creates an ComboKey whose internal representation will be set later, through a set method
ComboKey(SimpleKey[]) - Constructor for class org.apache.torque.om.ComboKey
Creates a ComboKey whose internal representation is an array of SimpleKeys.
ComboKey(String) - Constructor for class org.apache.torque.om.ComboKey
Sets the internal representation to a String array.
commit(Connection) - Static method in class org.apache.torque.util.Transaction
Commit a transaction.
compareTo(Object) - Method in class org.apache.torque.om.NumberKey
 
compareTo(Object) - Method in class org.apache.torque.om.ObjectKey
Implements the compareTo method.
configure(Configuration) - Method in class org.apache.torque.avalon.TorqueComponent
 
CONNECTION_KEY - Static variable in class org.apache.torque.dsfactory.AbstractDataSourceFactory
"connection" Key for the configuration
containsColumn(ColumnMap) - Method in class org.apache.torque.map.TableMap
Does this table contain the specified column?
containsColumn(String) - Method in class org.apache.torque.map.TableMap
Does this table contain the specified column?
containsKey(String, String) - Method in class org.apache.torque.util.Criteria
Does this Criteria Object contain the specified key?
containsKey(String) - Method in class org.apache.torque.util.ListOrderedMapCI
Test if the key exists in the mapping.
containsObjectColumn() - Method in class org.apache.torque.map.TableMap
Returns true if this tableMap contains a column with object data.
containsTable(TableMap) - Method in class org.apache.torque.map.DatabaseMap
Does this database contain this specific table?
containsTable(String) - Method in class org.apache.torque.map.DatabaseMap
Does this database contain this specific table?
contextualize(Context) - Method in class org.apache.torque.avalon.TorqueComponent
 
correctBooleans(Criteria, TableMap) - Static method in class org.apache.torque.util.BasePeer
Checks all columns in the criteria to see whether booleanchar and booleanint columns are queried with a boolean.
count(Criteria) - Method in class org.apache.torque.util.CountHelper
The COUNT function returns the number of rows in a query.
count(Criteria, Connection) - Method in class org.apache.torque.util.CountHelper
The COUNT function returns the number of rows in a query.
count(Criteria, String) - Method in class org.apache.torque.util.CountHelper
Returns the number of rows in a query.
count(Criteria, Connection, String) - Method in class org.apache.torque.util.CountHelper
Returns the number of rows in a query.
COUNT - Static variable in class org.apache.torque.util.functions.FunctionEnum
The COUNT( [Distinct] EXPR ) function id
count(String, Object, boolean) - Static method in class org.apache.torque.util.functions.FunctionFactory
Create a COUNT SQL function implementation.
count(Object) - Static method in class org.apache.torque.util.functions.FunctionFactory
Convenience method for creating a non-distinct function that uses the default DB.
CountHelper - Class in org.apache.torque.util
 
CountHelper() - Constructor for class org.apache.torque.util.CountHelper
 
create(String) - Static method in class org.apache.torque.adapter.DBFactory
Creates a new instance of the Torque database adapter associated with the specified JDBC driver or adapter key.
create(String, String) - Static method in class org.apache.torque.adapter.DBFactory
Creates a new instance of the Torque database adapter associated with the specified JDBC driver or adapter key and the class defined.
create(DB, String) - Static method in class org.apache.torque.oid.IDGeneratorFactory
Factory method which instantiates IdGenerator implementations based on the return value of the provided adapter's DB.getIDMethodType() method.
createPreparedStatement(Criteria, StringBuffer, List) - Static method in class org.apache.torque.util.BasePeer
Create a new PreparedStatement.
createQueryString(Criteria) - Static method in class org.apache.torque.util.BasePeer
Method to create an SQL query for actual execution based on values in a Criteria.
Criteria - Class in org.apache.torque.util
This is a utility class that is used for retrieving different types of values from a hashtable based on a simple name string.
Criteria() - Constructor for class org.apache.torque.util.Criteria
Creates a new instance with the default capacity.
Criteria(int) - Constructor for class org.apache.torque.util.Criteria
Creates a new instance with the specified capacity.
Criteria(String) - Constructor for class org.apache.torque.util.Criteria
Creates a new instance with the default capacity which corresponds to the specified database.
Criteria(String, int) - Constructor for class org.apache.torque.util.Criteria
Creates a new instance with the specified capacity which corresponds to the specified database.
Criteria.Criterion - Class in org.apache.torque.util
This is an inner class that describes an object in the criteria.
Criteria.Join - Class in org.apache.torque.util
Data object to describe a join between two tables, for example
Criteria.Join(String, String, SqlEnum) - Constructor for class org.apache.torque.util.Criteria.Join
Constructor
CURRENT_DATE - Static variable in class org.apache.torque.util.Criteria
"CURRENT_DATE" ANSI SQL function
CURRENT_DATE - Static variable in class org.apache.torque.util.SqlEnum
 
CURRENT_TIME - Static variable in class org.apache.torque.util.Criteria
"CURRENT_TIME" ANSI SQL function
CURRENT_TIME - Static variable in class org.apache.torque.util.SqlEnum
 
CUSTOM - Static variable in class org.apache.torque.util.Criteria
Comparison type.
CUSTOM - Static variable in class org.apache.torque.util.SqlEnum
 

D

Database - Class in org.apache.torque
Bundles all information about a database.
DATABASE_DEFAULT - Static variable in class org.apache.torque.Torque
Deprecated. is not used any more. Use DATABASE_KEY and DEFAULT_KEY instead
DATABASE_KEY - Static variable in class org.apache.torque.Torque
The prefix for configuring the database adapters and the default database.
DatabaseMap - Class in org.apache.torque.map
DatabaseMap is used to model a database.
DatabaseMap() - Constructor for class org.apache.torque.map.DatabaseMap
Constructs a new DatabaseMap.
DatabaseMap(String, int) - Constructor for class org.apache.torque.map.DatabaseMap
Deprecated. use DatabaseMap() instead. Will be removed in a future version of Torque.
DatabaseMap(String) - Constructor for class org.apache.torque.map.DatabaseMap
Deprecated. use DatabaseMap() instead. Will be removed in a future version of Torque.
DATASOURCE_KEY - Static variable in class org.apache.torque.dsfactory.JndiDataSourceFactory
Key for the configuration which contains properties for a DataSource which should be bound into jndi.
DataSourceFactory - Interface in org.apache.torque.dsfactory
A factory that returns a DataSource.
DateKey - Class in org.apache.torque.om
This class can be used as an ObjectKey to uniquely identify an object within an application where the id is a Date.
DateKey() - Constructor for class org.apache.torque.om.DateKey
Creates an DateKey whose internal representation will be set later, through a set method
DateKey(String) - Constructor for class org.apache.torque.om.DateKey
Creates a DateKey whose internal representation is a Date given by the long number given by the String
DateKey(Date) - Constructor for class org.apache.torque.om.DateKey
Creates a DateKey
DateKey(DateKey) - Constructor for class org.apache.torque.om.DateKey
Creates a DateKey that is equivalent to key.
DB - Interface in org.apache.torque.adapter
DB defines the interface for a Torque database adapter.
DBAxion - Class in org.apache.torque.adapter
This is used to connect to Hypersonic SQL databases.
DBAxion() - Constructor for class org.apache.torque.adapter.DBAxion
Constructor.
DBCloudscape - Class in org.apache.torque.adapter
This is used to connect to Cloudscape SQL databases.
DBCloudscape() - Constructor for class org.apache.torque.adapter.DBCloudscape
Constructor.
DBDB2400 - Class in org.apache.torque.adapter
Torque Database Adapter for DB2/400 on the IBM AS400 platform.
DBDB2400() - Constructor for class org.apache.torque.adapter.DBDB2400
DBDB2400 constructor.
DBDB2App - Class in org.apache.torque.adapter
This is used to connect via the Application-Driver to DB2 databases.
DBDB2App() - Constructor for class org.apache.torque.adapter.DBDB2App
Empty constructor.
DBDB2Net - Class in org.apache.torque.adapter
This is used to connect via the NET-Driver to DB2 databases.
DBDB2Net() - Constructor for class org.apache.torque.adapter.DBDB2Net
Empty constructor.
DBDerby - Class in org.apache.torque.adapter
This is used to connect to an embedded Apache Derby Database using the supplied JDBC driver.
DBDerby() - Constructor for class org.apache.torque.adapter.DBDerby
Empty constructor.
DBFactory - Class in org.apache.torque.adapter
This class creates different DB objects based on specified JDBC driver name.
DBFirebird - Class in org.apache.torque.adapter
This code should be used for a Firebird database pool.
DBFirebird() - Constructor for class org.apache.torque.adapter.DBFirebird
 
DBHypersonicSQL - Class in org.apache.torque.adapter
This is used to connect to Hypersonic SQL databases.
DBHypersonicSQL() - Constructor for class org.apache.torque.adapter.DBHypersonicSQL
Constructor.
DBInformix - Class in org.apache.torque.adapter
This code should be used for an Informix database pool.
DBInformix() - Constructor for class org.apache.torque.adapter.DBInformix
Empty constructor.
DBInstantDB - Class in org.apache.torque.adapter
This is used to connect to InstantDB databases.
DBInstantDB() - Constructor for class org.apache.torque.adapter.DBInstantDB
Empty constructor.
DBInterbase - Class in org.apache.torque.adapter
This code should be used for an Interbase database pool.
DBInterbase() - Constructor for class org.apache.torque.adapter.DBInterbase
 
DBMM - Class in org.apache.torque.adapter
This is used in order to connect to a MySQL database using the MM drivers.
DBMM() - Constructor for class org.apache.torque.adapter.DBMM
Empty protected constructor.
DBMSSQL - Class in org.apache.torque.adapter
This is used to connect to a MSSQL database.
DBMSSQL() - Constructor for class org.apache.torque.adapter.DBMSSQL
Empty constructor.
DBNone - Class in org.apache.torque.adapter
This DatabaseHandler is used when you do not have a database installed.
DBNone() - Constructor for class org.apache.torque.adapter.DBNone
Empty protected constructor.
DBOdbc - Class in org.apache.torque.adapter
This is used to connect to ODBC Bridged databases on Win32 Platforms.
DBOdbc() - Constructor for class org.apache.torque.adapter.DBOdbc
Empty constructor.
DBOracle - Class in org.apache.torque.adapter
This code should be used for an Oracle database pool.
DBOracle() - Constructor for class org.apache.torque.adapter.DBOracle
Empty constructor.
DBPostgres - Class in org.apache.torque.adapter
This is used to connect to PostgresQL databases.
DBPostgres() - Constructor for class org.apache.torque.adapter.DBPostgres
Empty constructor.
DBSapDB - Class in org.apache.torque.adapter
This is used to connect to SapDB databases.
DBSapDB() - Constructor for class org.apache.torque.adapter.DBSapDB
Empty constructor.
DBSybase - Class in org.apache.torque.adapter
This is used to connect to a Sybase database using Sybase's JConnect JDBC driver.
DBSybase() - Constructor for class org.apache.torque.adapter.DBSybase
Empty constructor.
DBWeblogic - Class in org.apache.torque.adapter
This code should be used for a Weblogic database pool.
DBWeblogic() - Constructor for class org.apache.torque.adapter.DBWeblogic
Empty constructor.
DEFAULT_CONNECTION_KEY - Static variable in class org.apache.torque.dsfactory.AbstractDataSourceFactory
"defaults.connection" Key for the configuration
DEFAULT_KEY - Static variable in class org.apache.torque.Torque
The key used to configure the name of the default database.
DEFAULT_MEMORY_LIMIT_PAGES - Static variable in class org.apache.torque.util.LargeSelect
The default value for the maximum number of pages of data to be retained in memory.
DEFAULT_MORE_INDICATOR - Static variable in class org.apache.torque.util.LargeSelect
The default value (">") used to indicate that the total number of records or pages is unknown.
DEFAULT_POOL_KEY - Static variable in class org.apache.torque.dsfactory.AbstractDataSourceFactory
"defaults.pool" Key for the configuration
DEFAULT_SCHEMA_KEY - Static variable in class org.apache.torque.dsfactory.AbstractDataSourceFactory
default schema name for the configuration
DEFAULTS_KEY - Static variable in class org.apache.torque.dsfactory.AbstractDataSourceFactory
"defaults" Key for the configuration
deleteAll(Connection, String, String, int) - Static method in class org.apache.torque.util.BasePeer
Convenience method that uses straight JDBC to delete multiple rows.
deleteAll(String, String, int) - Static method in class org.apache.torque.util.BasePeer
Convenience method that uses straight JDBC to delete multiple rows.
DELIMITERS - Static variable in class org.apache.torque.util.SQLBuilder
 
DESC - Static variable in class org.apache.torque.util.SqlEnum
 
dispose() - Method in class org.apache.torque.avalon.TorqueComponent
 
dispose() - Method in class org.apache.torque.manager.AbstractBaseManager
Disposes of the cache.
DISTINCT - Static variable in class org.apache.torque.util.Criteria
Comparison type.
DISTINCT - Static variable in class org.apache.torque.util.SqlEnum
 
doBuild() - Method in interface org.apache.torque.map.MapBuilder
Build up the database mapping.
doDelete(Criteria) - Static method in class org.apache.torque.util.BasePeer
Deprecated. This method causes unexpected results when joins are used. Please use doDelete(Criteria, String).
doDelete(Criteria, String) - Static method in class org.apache.torque.util.BasePeer
Method to perform deletes based on values and keys in a Criteria.
doDelete(Criteria, Connection) - Static method in class org.apache.torque.util.BasePeer
Deprecated. This method causes unexpected results when joins are used. Please use doDelete(Criteria, String, Connection).
doDelete(Criteria, String, Connection) - Static method in class org.apache.torque.util.BasePeer
Method to perform deletes based on values and keys in a Criteria.
doInsert(Criteria) - Static method in class org.apache.torque.util.BasePeer
Method to perform inserts based on values and keys in a Criteria.
doInsert(Criteria, Connection) - Static method in class org.apache.torque.util.BasePeer
Method to perform inserts based on values and keys in a Criteria.
doPSSelect(Criteria, Connection) - Static method in class org.apache.torque.util.BasePeer
Performs a SQL select using a PreparedStatement.
doPSSelect(Criteria) - Static method in class org.apache.torque.util.BasePeer
Do a Prepared Statement select according to the given criteria
doSelect(Criteria) - Static method in class org.apache.torque.util.BasePeer
Returns all results.
doSelect(Criteria, Connection) - Static method in class org.apache.torque.util.BasePeer
Returns all results.
doubleValue() - Method in class org.apache.torque.om.NumberKey
Returns the value of this NumberKey as a double.
doUpdate(Criteria) - Static method in class org.apache.torque.util.BasePeer
Convenience method used to update rows in the DB.
doUpdate(Criteria, Connection) - Static method in class org.apache.torque.util.BasePeer
Convenience method used to update rows in the DB.
doUpdate(Criteria, Criteria) - Static method in class org.apache.torque.util.BasePeer
Method used to update rows in the DB.
doUpdate(Criteria, Criteria, Connection) - Static method in class org.apache.torque.util.BasePeer
Method used to update rows in the DB.
DRIVER_KEY - Static variable in interface org.apache.torque.adapter.DB
Key for the configuration which contains database drivers.
DSFACTORY_KEY - Static variable in interface org.apache.torque.dsfactory.DataSourceFactory
Key for the configuration which contains DataSourceFactories
dumpResults(Writer, List, boolean) - Method in class org.apache.torque.util.SummaryHelper
Convenience method to dump a summary results list to an output writer in a semi-CSV format.

E

enableLogging(Logger) - Method in class org.apache.torque.avalon.TorqueComponent
 
EQUAL - Static variable in class org.apache.torque.util.Criteria
Comparison type.
EQUAL - Static variable in class org.apache.torque.util.SqlEnum
 
equals(Object) - Method in class org.apache.torque.manager.MethodCacheKey
 
equals(Object) - Method in class org.apache.torque.om.BaseObject
Compares this with another BaseObject instance.
equals(BaseObject) - Method in class org.apache.torque.om.BaseObject
Compares the primary key of this instance with the key of another.
equals(Object) - Method in class org.apache.torque.om.ComboKey
This method will return true if the conditions for a looseEquals are met and in addition no parts of the keys are null.
equals(Object) - Method in class org.apache.torque.om.DateKey
keyObj is equal to this DateKey if keyObj is a DateKey or String that contains the same information this key contains.
equals(Object) - Method in class org.apache.torque.om.NumberKey
Two ObjectKeys that both contain null values are not considered equal.
equals(Object) - Method in class org.apache.torque.om.StringKey
keyObj is equal to this StringKey if keyObj is a StringKey or String that contains the same information this key contains.
equals(Object) - Method in class org.apache.torque.util.Criteria.Criterion
This method checks another Criteria.Criterion to see if they contain the same attributes and hashtable entries.
equals(Object) - Method in class org.apache.torque.util.Criteria
This method checks another Criteria to see if they contain the same attributes and hashtable entries.
equals(Object) - Method in class org.apache.torque.util.Criteria.Join
This method checks another Criteria.Join to see if they contain the same attributes.
equals(Object) - Method in class org.apache.torque.util.functions.FunctionEnum
returns whether o is the same FunctionEnum as this object.
equals(Object) - Method in class org.apache.torque.util.SqlEnum
returns whether o is the same SqlEnum as this object.
ERROR_MESSAGES_INIT - Static variable in class org.apache.torque.map.DatabaseMap
Error Messages for initialisation.
ESCAPE - Static variable in class org.apache.torque.util.SqlEnum
 
escapeText() - Method in class org.apache.torque.adapter.AbstractDBAdapter
This method is for the SqlExpression.quoteAndEscape rules.
escapeText() - Method in interface org.apache.torque.adapter.DB
Whether backslashes (\) should be escaped in explicit SQL strings.
escapeText() - Method in class org.apache.torque.adapter.DBDerby
Whether backslashes (\) should be escaped in explicit SQL strings.
escapeText() - Method in class org.apache.torque.adapter.DBFirebird
This method is for the SqlExpression.quoteAndEscape rules.
escapeText() - Method in class org.apache.torque.adapter.DBHypersonicSQL
This method is for the SqlExpression.quoteAndEscape rules.
escapeText() - Method in class org.apache.torque.adapter.DBInterbase
This method is for the SqlExpression.quoteAndEscape rules.
escapeText() - Method in class org.apache.torque.adapter.DBOracle
This method is for the SqlExpression.quoteAndEscape rules.
escapeText() - Method in class org.apache.torque.adapter.DBSapDB
This method is for the SqlExpression.quoteAndEscape rules.
escapeText() - Method in class org.apache.torque.adapter.DBSybase
Determines whether backslashes (\) should be escaped in explicit SQL strings.
excludeExprColumns() - Method in class org.apache.torque.util.SummaryHelper
Should the results include unnamed columns, e.g.
executeQuery(String) - Static method in class org.apache.torque.util.BasePeer
Utility method which executes a given sql statement.
executeQuery(String, String) - Static method in class org.apache.torque.util.BasePeer
Utility method which executes a given sql statement.
executeQuery(String, String, boolean) - Static method in class org.apache.torque.util.BasePeer
Method for performing a SELECT.
executeQuery(String, boolean, Connection) - Static method in class org.apache.torque.util.BasePeer
Method for performing a SELECT.
executeQuery(String, int, int, String, boolean) - Static method in class org.apache.torque.util.BasePeer
Method for performing a SELECT.
executeQuery(String, int, int, boolean, Connection) - Static method in class org.apache.torque.util.BasePeer
Method for performing a SELECT.
executeStatement(String) - Static method in class org.apache.torque.util.BasePeer
Utility method which executes a given sql statement.
executeStatement(String, String) - Static method in class org.apache.torque.util.BasePeer
Utility method which executes a given sql statement.
executeStatement(String, Connection) - Static method in class org.apache.torque.util.BasePeer
Utility method which executes a given sql statement.
exists(String) - Method in class org.apache.torque.oid.IDBroker
 

F

FACTORY_KEY - Static variable in interface org.apache.torque.dsfactory.DataSourceFactory
Key for the configuration which contains the fully qualified name of the factory implementation class
floatValue() - Method in class org.apache.torque.om.NumberKey
Returns the value of this NumberKey as a float.
fromClauseContainsTableName(UniqueList, String) - Static method in class org.apache.torque.util.SQLBuilder
Checks if the Tablename tableName is already contained in a from clause.
FunctionEnum - Class in org.apache.torque.util.functions
A typesafe enum of SQL Standard function names.
FunctionFactory - Class in org.apache.torque.util.functions
This class is a "Factory class" for creating SQLFunction implementation classes.
functionInstance(String, FunctionEnum, Object[]) - Static method in class org.apache.torque.util.functions.FunctionFactory
"Generic" function class creation method.
functionInstance(FunctionEnum, Object[]) - Static method in class org.apache.torque.util.functions.FunctionFactory
 

G

generateLimits(Query, int, int) - Method in class org.apache.torque.adapter.AbstractDBAdapter
This method is used to generate the database specific query extension to limit the number of record returned.
generateLimits(Query, int, int) - Method in interface org.apache.torque.adapter.DB
This method is used to generate the database specific query extension to limit the number of record returned.
generateLimits(Query, int, int) - Method in class org.apache.torque.adapter.DBDB2App
Build DB2 (OLAP) -style query with limit or offset.
generateLimits(Query, int, int) - Method in class org.apache.torque.adapter.DBMM
Generate a LIMIT offset, limit clause if offset > 0 or an LIMIT limit clause if limit is > 0 and offset is 0.
generateLimits(Query, int, int) - Method in class org.apache.torque.adapter.DBOracle
Build Oracle-style query with limit or offset.
generateLimits(Query, int, int) - Method in class org.apache.torque.adapter.DBPostgres
Generate a LIMIT limit OFFSET offset clause if offset > 0 or an LIMIT limit clause if limit is > 0 and offset is 0.
generateLimits(Query, int, int) - Method in class org.apache.torque.adapter.DBSybase
Modify a query to add limit and offset values for Sybase.
get(Serializable, String) - Method in class org.apache.torque.manager.MethodResultCache
 
get(Serializable, String, Serializable) - Method in class org.apache.torque.manager.MethodResultCache
 
get(Serializable, String, Serializable, Serializable) - Method in class org.apache.torque.manager.MethodResultCache
 
get(Serializable, String, Serializable, Serializable, Serializable) - Method in class org.apache.torque.manager.MethodResultCache
 
get(Serializable[]) - Method in class org.apache.torque.manager.MethodResultCache
 
get(Serializable, String) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
get(Serializable, String, Serializable) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
get(Serializable, String, Serializable, Serializable) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
get(Serializable, String, Serializable, Serializable, Serializable) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
get(Serializable[]) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
get(Object) - Method in class org.apache.torque.util.Criteria
Overrides Hashtable get, so that the value placed in the Criterion is returned instead of the Criterion.
get(String) - Method in class org.apache.torque.util.ListOrderedMapCI
Get the object associated with this key.
getAdapter() - Method in class org.apache.torque.Database
Returns the adapther to this database.
getAggregates() - Method in class org.apache.torque.util.SummaryHelper
Get the order map list of aggregate functions to use in summarizing this table's informations.
getAliases() - Method in class org.apache.torque.util.Criteria
Get the table aliases.
getAllTables() - Method in class org.apache.torque.util.Criteria.Criterion
get all tables from nested criterion objects
getArgument(int) - Method in class org.apache.torque.util.functions.AbstractFunction
Return a string representation of the function parameter at the specified index.
getArgument(int) - Method in class org.apache.torque.util.functions.Aggregate.AgregateFunction
 
getArgument(int) - Method in interface org.apache.torque.util.functions.SQLFunction
Return a string representation of the function parameters at index i.
getArgumentList() - Method in class org.apache.torque.util.functions.AbstractFunction
Get the full list of function arguments
getArgumentObject(int) - Method in class org.apache.torque.util.functions.AbstractFunction
Return the object representation of the function parameter at the specified index.
getArguments() - Method in class org.apache.torque.util.functions.AbstractFunction
Return all the parameters as an object array.
getArguments() - Method in interface org.apache.torque.util.functions.SQLFunction
Return all the parameters as an object array.
getAsColumns() - Method in class org.apache.torque.util.Criteria
Get the column aliases.
getAttachedCriterion() - Method in class org.apache.torque.util.Criteria.Criterion
get an array of all criterion attached to this recursing through all sub criterion
getBigDecimal() - Method in class org.apache.torque.om.NumberKey
Access the underlying BigDecimal object.
getBigDecimal(String) - Method in class org.apache.torque.util.Criteria
Convenience method to return a BigDecimal.
getBigDecimal(String, String) - Method in class org.apache.torque.util.Criteria
Convenience method to return a BigDecimal.
getBoolean(String) - Method in class org.apache.torque.util.Criteria
Convenience method to return value as a boolean.
getBoolean(String, String) - Method in class org.apache.torque.util.Criteria
Convenience method to return value as a boolean.
getBooleanString(Boolean) - Method in class org.apache.torque.adapter.AbstractDBAdapter
This method is used to format a boolean string.
getBooleanString(Boolean) - Method in interface org.apache.torque.adapter.DB
This method is used to format a boolean string.
getBooleanString(Boolean) - Method in class org.apache.torque.adapter.DBPostgres
Override the default behavior to associate b with null?
getByName(String) - Method in class org.apache.torque.om.BaseObject
Retrieves a field from the object by name.
getByPeerName(String) - Method in class org.apache.torque.om.BaseObject
Retrieves a field from the object by name passed in as a String.
getByPosition(int) - Method in class org.apache.torque.om.BaseObject
Retrieves a field from the object by position as specified in a database schema for example.
getClassName() - Method in class org.apache.torque.manager.AbstractBaseManager
Get the classname to instantiate for getInstance()
getClassName() - Method in class org.apache.torque.map.InheritanceMap
Returns the class name for this InheritanceMap.
getColumn() - Method in class org.apache.torque.map.InheritanceMap
Returns the column this inheritance map belongs to.
getColumn(String) - Method in class org.apache.torque.map.TableMap
Get a ColumnMap for the named table.
getColumn() - Method in class org.apache.torque.util.Criteria.Criterion
Get the column name.
getColumnName() - Method in class org.apache.torque.map.ColumnMap
Get the name of a column.
getColumnName(String) - Method in class org.apache.torque.util.Criteria
Method to return a String table name.
getColumns() - Method in class org.apache.torque.map.TableMap
Get a ColumnMap[] of the columns in this table.
getComparison() - Method in class org.apache.torque.util.Criteria.Criterion
Get the comparison.
getComparison(String) - Method in class org.apache.torque.util.Criteria
Method to return a comparison String.
getComparison(String, String) - Method in class org.apache.torque.util.Criteria
Method to return a comparison String.
getConfiguration() - Method in interface org.apache.torque.avalon.Torque
Get the configuration for this component.
getConfiguration() - Static method in class org.apache.torque.Torque
Get the configuration for this component.
getConfiguration() - Method in class org.apache.torque.TorqueInstance
Get the configuration for this component.
getConnection() - Method in class org.apache.torque.adapter.DBNone
 
getConnection() - Method in interface org.apache.torque.avalon.Torque
This method returns a Connection from the default pool.
getConnection(String) - Method in interface org.apache.torque.avalon.Torque
 
getConnection(String, String, String) - Method in interface org.apache.torque.avalon.Torque
This method returns a Connecton using the given parameters.
getConnection() - Static method in class org.apache.torque.Torque
This method returns a Connection from the default pool.
getConnection(String) - Static method in class org.apache.torque.Torque
This method returns a Connecton using the given database name.
getConnection(String, String, String) - Static method in class org.apache.torque.Torque
This method returns a Connecton using the given parameters.
getConnection() - Method in class org.apache.torque.TorqueInstance
This method returns a Connection from the default pool.
getConnection(String) - Method in class org.apache.torque.TorqueInstance
Returns a database connection to the database with the key name.
getConnection(String, String, String) - Method in class org.apache.torque.TorqueInstance
This method returns a Connection using the given parameters.
getCriterion(String) - Method in class org.apache.torque.util.Criteria
Method to return criteria related to columns in a table.
getCriterion(String, String) - Method in class org.apache.torque.util.Criteria
Method to return criteria related to a column in a table.
getCurrentPageNumber() - Method in class org.apache.torque.util.LargeSelect
Retrieve the number of the current page.
getCurrentPageResults() - Method in class org.apache.torque.util.LargeSelect
Provide access to the results from the current page.
getCurrentPageSize() - Method in class org.apache.torque.util.LargeSelect
Provides a count of the number of rows to be displayed on the current page - for the last page this may be less than the configured page size.
getDatabase(String) - Method in interface org.apache.torque.avalon.Torque
Returns the database for the key databaseName.
getDatabase(String) - Static method in class org.apache.torque.Torque
Returns the database for the given key.
getDatabase(String) - Method in class org.apache.torque.TorqueInstance
Returns the database for the key databaseName.
getDatabaseMap() - Method in interface org.apache.torque.avalon.Torque
Returns the default database map information.
getDatabaseMap(String) - Method in interface org.apache.torque.avalon.Torque
Returns the database map information.
getDatabaseMap() - Method in class org.apache.torque.Database
Returns the database map for this database.
getDatabaseMap() - Method in interface org.apache.torque.map.MapBuilder
Gets the database mapping this map builder built.
getDatabaseMap() - Method in class org.apache.torque.map.TableMap
Get the DatabaseMap containing this TableMap.
getDatabaseMap() - Static method in class org.apache.torque.Torque
Returns the default database map information.
getDatabaseMap(String) - Static method in class org.apache.torque.Torque
Returns the database map information.
getDatabaseMap() - Method in class org.apache.torque.TorqueInstance
Returns the default database map information.
getDatabaseMap(String) - Method in class org.apache.torque.TorqueInstance
Returns the database map information.
getDatabases() - Method in interface org.apache.torque.avalon.Torque
Returns a Map containing all Databases registered to Torque.
getDatabases() - Static method in class org.apache.torque.Torque
Returns a Map containing all Databases registered to Torque.
getDatabases() - Method in class org.apache.torque.TorqueInstance
Returns a Map containing all Databases registered to Torque.
getDataSource() - Method in class org.apache.torque.dsfactory.AbstractDataSourceFactory
 
getDataSource() - Method in interface org.apache.torque.dsfactory.DataSourceFactory
 
getDataSource() - Method in class org.apache.torque.dsfactory.JndiDataSourceFactory
 
getDataSource() - Method in class org.apache.torque.dsfactory.PerUserPoolDataSourceFactory
 
getDataSource() - Method in class org.apache.torque.dsfactory.SharedPoolDataSourceFactory
 
getDataSourceFactory() - Method in class org.apache.torque.Database
Returns the DataSourceFactory for this database.
getDataSourceFactory(String) - Method in class org.apache.torque.TorqueInstance
Returns the DataSourceFactory for the database with the name name.
getDate() - Method in class org.apache.torque.om.DateKey
Access the underlying Date object.
getDate(String) - Method in class org.apache.torque.util.Criteria
Convenience method to return a Date.
getDate(String, String) - Method in class org.apache.torque.util.Criteria
Convenience method to return a Date.
getDateString(Date) - Method in class org.apache.torque.adapter.AbstractDBAdapter
This method is used to format any date string.
getDateString(Date) - Method in interface org.apache.torque.adapter.DB
This method is used to format any date string.
getDateString(Date) - Method in class org.apache.torque.adapter.DBFirebird
This method overrides the JDBC escapes used to format dates using a DateFormat.
getDateString(Date) - Method in class org.apache.torque.adapter.DBInterbase
This method overrides the JDBC escapes used to format dates using a DateFormat.
getDateString(Date) - Method in class org.apache.torque.adapter.DBMM
This method overrides the JDBC escapes used to format dates using a DateFormat.
getDateString(Date) - Method in class org.apache.torque.adapter.DBOracle
This method is used to format any date string.
getDateString(Date) - Method in class org.apache.torque.adapter.DBPostgres
This method overrides the JDBC escapes used to format dates using a DateFormat.
getDateString(Date) - Method in class org.apache.torque.adapter.DBSybase
This method overrides the JDBC escapes used to format dates using a DateFormat.
getDB(String) - Method in interface org.apache.torque.avalon.Torque
Returns database adapter for a specific connection pool.
getDB(String) - Static method in class org.apache.torque.Torque
Returns database adapter for a specific connection pool.
getDB(String) - Method in class org.apache.torque.TorqueInstance
Returns the database adapter for a specific database.
getDb() - Method in class org.apache.torque.util.Criteria.Criterion
Get the value of db.
getDbMap() - Method in class org.apache.torque.map.TableMap
Returns the database map for this table.
getDbName() - Method in class org.apache.torque.util.Criteria
Get the Database(Map) name.
getDBName() - Method in class org.apache.torque.util.functions.AbstractFunction
Get the name of the Torque Database associated with this function.
getDBName() - Method in interface org.apache.torque.util.functions.SQLFunction
Get the name of the Torque Database associated with this function.
getDefault() - Method in class org.apache.torque.map.ColumnMap
A string representing the default value defined for this column.
getDefaultDB() - Method in interface org.apache.torque.avalon.Torque
Returns the name of the default database.
getDefaultDB() - Static method in class org.apache.torque.Torque
Returns the name of the default database.
getDefaultDB() - Method in class org.apache.torque.TorqueInstance
Returns the name of the default database.
getDescription() - Method in class org.apache.torque.map.ColumnMap
Returns the column description info.
getDescription() - Method in class org.apache.torque.map.TableMap
Returns the table description info.
getDouble(String) - Method in class org.apache.torque.util.Criteria
Convenience method to return a double.
getDouble(String, String) - Method in class org.apache.torque.util.Criteria
Convenience method to return a double.
getExtends() - Method in class org.apache.torque.map.InheritanceMap
Returns the ancestor class for the class described by this InheritanceMap.
getFirstRecordNoForPage() - Method in class org.apache.torque.util.LargeSelect
Provide the record number of the first row included on the current page.
getFloat(String) - Method in class org.apache.torque.util.Criteria
Convenience method to return a float.
getFloat(String, String) - Method in class org.apache.torque.util.Criteria
Convenience method to return a float.
getFromClause() - Method in class org.apache.torque.util.Query
Retrieve the from buffer in order to specify which tables are involved in this query.
getFullTableName(String, String) - Static method in class org.apache.torque.util.SQLBuilder
Fully qualify a table name with an optional schema reference
getFullyQualifiedName() - Method in class org.apache.torque.map.ColumnMap
Get the table name + column name.
getFunction() - Method in class org.apache.torque.util.functions.Aggregate.AgregateFunction
Get the function name to use, e.g.
getFunctionClass(FunctionEnum) - Method in class org.apache.torque.adapter.AbstractDBAdapter
Return the class which implements the SQLFunction interface for the specified function.
getFunctionClass(FunctionEnum) - Method in interface org.apache.torque.adapter.DB
Return the class which implements the SQLFunction interface for the specified function.
getGroupByClause() - Method in class org.apache.torque.util.Query
Retrieve the group by columns buffer in order to specify which columns are used to group the results of the query.
getGroupByColumns() - Method in class org.apache.torque.util.Criteria
Get group by columns.
getGroupByColumns() - Method in class org.apache.torque.util.SummaryHelper
 
getGroupKey() - Method in class org.apache.torque.manager.MethodCacheKey
 
getHaving() - Method in class org.apache.torque.util.Criteria
Get Having Criterion.
getHaving() - Method in class org.apache.torque.util.Query
Get the having clause.
getIdAsBigDecimal(Connection, Object) - Method in class org.apache.torque.oid.AutoIncrementIdGenerator
Returns the last ID used by this connection.
getIdAsBigDecimal(Connection, Object) - Method in class org.apache.torque.oid.IDBroker
Returns an id as a BigDecimal.
getIdAsBigDecimal(Connection, Object) - Method in interface org.apache.torque.oid.IdGenerator
Returns an id as a BigDecimal.
getIdAsBigDecimal(Connection, Object) - Method in class org.apache.torque.oid.SequenceIdGenerator
Retrieves an id as a BigDecimal.
getIdAsInt(Connection, Object) - Method in class org.apache.torque.oid.AutoIncrementIdGenerator
Returns the last ID used by this connection.
getIdAsInt(Connection, Object) - Method in class org.apache.torque.oid.IDBroker
Returns an id as a primitive int.
getIdAsInt(Connection, Object) - Method in interface org.apache.torque.oid.IdGenerator
Returns an id as a primitive int.
getIdAsInt(Connection, Object) - Method in class org.apache.torque.oid.SequenceIdGenerator
Retrieves an id as an int.
getIdAsLong(Connection, Object) - Method in class org.apache.torque.oid.AutoIncrementIdGenerator
Returns the last ID used by this connection.
getIdAsLong(Connection, Object) - Method in class org.apache.torque.oid.IDBroker
Returns an id as a primitive long.
getIdAsLong(Connection, Object) - Method in interface org.apache.torque.oid.IdGenerator
Returns an id as a primitive long.
getIdAsLong(Connection, Object) - Method in class org.apache.torque.oid.SequenceIdGenerator
Retrieves an id as an long.
getIdAsString(Connection, Object) - Method in class org.apache.torque.oid.AutoIncrementIdGenerator
Returns the last ID used by this connection.
getIdAsString(Connection, Object) - Method in class org.apache.torque.oid.IDBroker
Returns an id as a String.
getIdAsString(Connection, Object) - Method in interface org.apache.torque.oid.IdGenerator
Returns an id as a String.
getIdAsString(Connection, Object) - Method in class org.apache.torque.oid.SequenceIdGenerator
Retrieves an id as an String.
getIDBroker() - Method in class org.apache.torque.Database
Get the IDBroker for this database.
getIDBroker() - Method in class org.apache.torque.map.DatabaseMap
Deprecated. Will be removed in a future version of Torque. Use DatabaseInfo#getIdBroker() instead to access the IDBroker.
getIdGenerator(String) - Method in class org.apache.torque.Database
Returns the IdGenerator of the given type for this Database.
getIdGenerator(String) - Method in class org.apache.torque.map.DatabaseMap
Deprecated. use DatabaseInfo.getIdGenerator() instead. Will be removed in a future version of Torque.
getIdGenerator() - Method in class org.apache.torque.map.TableMap
Deprecated. use DatabaseInfo.getIdGenerator(getPrimaryKeyMethod()) instead. Will be removed in a future version of Torque.
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.AbstractDBAdapter
Returns SQL used to get the most recently inserted primary key.
getIDMethodSQL(Object) - Method in interface org.apache.torque.adapter.DB
Returns SQL used to get the most recently inserted primary key.
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBAxion
 
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBCloudscape
 
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBDB2App
 
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBDerby
Returns the SQL to get the database key of the last row inserted, which in this case is VALUES IDENTITY_VAL_LOCAL().
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBFirebird
 
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBHypersonicSQL
 
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBInformix
 
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBInstantDB
 
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBInterbase
 
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBMM
Returns the SQL to get the database key of the last row inserted, which in this case is SELECT LAST_INSERT_ID().
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBNone
 
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBOdbc
 
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBOracle
Returns the next key from a sequence.
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBPostgres
 
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBSapDB
Returns the next key from a sequence.
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBSybase
Returns the last value from an identity column (available on a per-session basis from the global variable @@identity).
getIDMethodSQL(Object) - Method in class org.apache.torque.adapter.DBWeblogic
 
getIDMethodType() - Method in class org.apache.torque.adapter.AbstractDBAdapter
Returns the constant from the IDMethod interface denoting which type of primary key generation method this type of RDBMS uses.
getIDMethodType() - Method in interface org.apache.torque.adapter.DB
Returns the constant from the IDMethod interface denoting which type of primary key generation method this type of RDBMS uses.
getIDMethodType() - Method in class org.apache.torque.adapter.DBAxion
 
getIDMethodType() - Method in class org.apache.torque.adapter.DBCloudscape
 
getIDMethodType() - Method in class org.apache.torque.adapter.DBDB2App
 
getIDMethodType() - Method in class org.apache.torque.adapter.DBDerby
 
getIDMethodType() - Method in class org.apache.torque.adapter.DBFirebird
 
getIDMethodType() - Method in class org.apache.torque.adapter.DBHypersonicSQL
 
getIDMethodType() - Method in class org.apache.torque.adapter.DBInformix
 
getIDMethodType() - Method in class org.apache.torque.adapter.DBInstantDB
 
getIDMethodType() - Method in class org.apache.torque.adapter.DBInterbase
 
getIDMethodType() - Method in class org.apache.torque.adapter.DBMM
 
getIDMethodType() - Method in class org.apache.torque.adapter.DBNone
 
getIDMethodType() - Method in class org.apache.torque.adapter.DBOdbc
 
getIDMethodType() - Method in class org.apache.torque.adapter.DBOracle
 
getIDMethodType() - Method in class org.apache.torque.adapter.DBPostgres
 
getIDMethodType() - Method in class org.apache.torque.adapter.DBSapDB
 
getIDMethodType() - Method in class org.apache.torque.adapter.DBSybase
 
getIDMethodType() - Method in class org.apache.torque.adapter.DBWeblogic
 
getIdTable() - Method in class org.apache.torque.map.DatabaseMap
Get the ID table for this database.
getImpl(MethodCacheKey) - Method in class org.apache.torque.manager.MethodResultCache
 
getImpl(MethodCacheKey) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
getInheritance() - Method in class org.apache.torque.map.ColumnMap
Gets the inheritance type used.
getInheritanceMap(String) - Method in class org.apache.torque.map.ColumnMap
Get the inheritance map with the specified key.
getInheritanceMaps() - Method in class org.apache.torque.map.ColumnMap
Get the inheritance information associated with this column,
getInputValidator() - Method in class org.apache.torque.map.ColumnMap
Returns the input validator class name.
getInstance() - Static method in class org.apache.torque.Torque
Retrieves the single TorqueInstance used by this class.
getInt(String) - Method in class org.apache.torque.util.Criteria
Convenience method to return an int.
getInt(String, String) - Method in class org.apache.torque.util.Criteria
Convenience method to return an int.
getInteger(String) - Method in class org.apache.torque.util.Criteria
Convenience method to return an Integer.
getInteger(String, String) - Method in class org.apache.torque.util.Criteria
Convenience method to return an Integer.
getInterestedFields() - Method in interface org.apache.torque.manager.CacheListener
 
getJavaName() - Method in class org.apache.torque.map.ColumnMap
Gets the Java Name for this column as defined in XML or created by generator code.
getJavaName() - Method in class org.apache.torque.map.TableMap
Get the Java name of the table as defined in XML.
getJavaNamingMethod() - Method in class org.apache.torque.map.ColumnMap
Returns the Java naming method for this column.
getJavaType() - Method in class org.apache.torque.map.ColumnMap
Returns the java type of this column.
getJoinCondition() - Method in class org.apache.torque.util.Query.FromElement
 
getJoinL() - Method in class org.apache.torque.util.Criteria
Deprecated. This method is no longer used by BasePeer.
getJoinR() - Method in class org.apache.torque.util.Criteria
Deprecated. This method is no longer used by BasePeer.
getJoins() - Method in class org.apache.torque.util.Criteria
get the List of Joins.
getJoinType() - Method in class org.apache.torque.util.Criteria.Join
 
getJoinType() - Method in class org.apache.torque.util.Query.FromElement
 
getKey() - Method in class org.apache.torque.map.InheritanceMap
Returns the key by which this inheritanceMap is activated.
getLastRecordNoForPage() - Method in class org.apache.torque.util.LargeSelect
Provide the record number of the last row included on the current page.
getLeftColumn() - Method in class org.apache.torque.util.Criteria.Join
 
getLimit() - Method in class org.apache.torque.util.Criteria
Get limit.
getLimit() - Method in class org.apache.torque.util.Query
Get the limit number.
getLimitStyle() - Method in class org.apache.torque.adapter.AbstractDBAdapter
Deprecated. This should not be exposed to the outside
getLimitStyle() - Method in interface org.apache.torque.adapter.DB
Deprecated. This should not be exposed to the outside
getLimitStyle() - Method in class org.apache.torque.adapter.DBDB2App
Deprecated. This should not be exposed to the outside
getLimitStyle() - Method in class org.apache.torque.adapter.DBMM
Deprecated. This should not be exposed to the outside
getLimitStyle() - Method in class org.apache.torque.adapter.DBOracle
Deprecated. This should not be exposed to the outside
getLimitStyle() - Method in class org.apache.torque.adapter.DBPostgres
Deprecated. This should not be exposed to the outside
getLimitStyle() - Method in class org.apache.torque.adapter.DBSybase
Deprecated. This should not be exposed to the outside
getList(String) - Method in class org.apache.torque.util.Criteria
Convenience method to return a List.
getList(String, String) - Method in class org.apache.torque.util.Criteria
Convenience method to return a List.
getLog() - Method in class org.apache.torque.om.BaseObject
gets a commons-logging Log based on class name.
getLogger() - Method in class org.apache.torque.avalon.TorqueComponent
Convenience method to provide the Avalon logger the way AbstractLogEnabled does.
getLong(String) - Method in class org.apache.torque.util.Criteria
Convenience method to return a long.
getLong(String, String) - Method in class org.apache.torque.util.Criteria
Convenience method to return a long.
getManager(String) - Method in interface org.apache.torque.avalon.Torque
This method returns a Manager for the given name.
getManager(String, String) - Method in interface org.apache.torque.avalon.Torque
This methods returns either the Manager from the configuration file, or the default one provided by the generated code.
getManager(String) - Static method in class org.apache.torque.Torque
This method returns a Manager for the given name.
getManager(String, String) - Static method in class org.apache.torque.Torque
This methods returns either the Manager from the configuration file, or the default one provided by the generated code.
getManager(String) - Method in class org.apache.torque.TorqueInstance
This method returns a Manager for the given name.
getManager(String, String) - Method in class org.apache.torque.TorqueInstance
This methods returns either the Manager from the configuration file, or the default one provided by the generated code.
getManagerClass() - Method in class org.apache.torque.map.TableMap
Returns the manager class for this table.
getMapBuilder(String) - Method in interface org.apache.torque.avalon.Torque
Get a MapBuilder
getMapBuilder(String) - Static method in class org.apache.torque.Torque
Get a MapBuilder
getMapBuilder(String) - Method in class org.apache.torque.TorqueInstance
Get a MapBuilder
getMapBuilder(String) - Static method in class org.apache.torque.util.BasePeer
Deprecated. Use Torque.getMapBuilder(name) instead
getMapBuilders() - Method in class org.apache.torque.TorqueInstance
Get the registered MapBuilders
getMemoryPageLimit() - Static method in class org.apache.torque.util.LargeSelect
Retrieves the multiplier that will be used to compute the memory limit when a constructor with no memory page limit is used - the memory limit will be this number multiplied by the page size.
getMethodResultCache() - Method in class org.apache.torque.manager.AbstractBaseManager
 
getMoreIndicator() - Static method in class org.apache.torque.util.LargeSelect
Retrieve the more pages/records indicator.
getName() - Method in class org.apache.torque.Database
returns the name of the database.
getName() - Method in class org.apache.torque.map.DatabaseMap
Deprecated. Will be removed in a future version of Torque. Use the name of the corresponding database instead.
getName() - Method in class org.apache.torque.map.TableMap
Get the name of the Table.
getNewCriterion(String, Object, SqlEnum) - Method in class org.apache.torque.util.Criteria
Method to return criterion that is not added automatically to this Criteria.
getNewCriterion(String, String, Object, SqlEnum) - Method in class org.apache.torque.util.Criteria
Method to return criterion that is not added automatically to this Criteria.
getNextIds(String, int) - Method in class org.apache.torque.oid.IDBroker
This method returns x number of ids for the given table.
getNextIds(String, int, Connection) - Method in class org.apache.torque.oid.IDBroker
This method returns x number of ids for the given table.
getNextResults() - Method in class org.apache.torque.util.LargeSelect
Gets the next page of rows.
getNextResultsAvailable() - Method in class org.apache.torque.util.LargeSelect
Indicates if further result pages are available.
getObjectKey(String) - Method in class org.apache.torque.util.Criteria
Convenience method to return an ObjectKey.
getObjectKey(String, String) - Method in class org.apache.torque.util.Criteria
Convenience method to return an ObjectKey.
getOffset() - Method in class org.apache.torque.util.Criteria
Get offset.
getOffset() - Method in class org.apache.torque.util.Query
Get the offset number.
getOMClass() - Method in class org.apache.torque.manager.AbstractBaseManager
Get the Class instance
getOMClass() - Method in class org.apache.torque.map.TableMap
Returns the OM class for this table.
getOMInstance() - Method in class org.apache.torque.manager.AbstractBaseManager
Get a fresh instance of an om
getOMInstance(ObjectKey) - Method in class org.apache.torque.manager.AbstractBaseManager
Return an instance of an om based on the id
getOMInstance(ObjectKey, boolean) - Method in class org.apache.torque.manager.AbstractBaseManager
Return an instance of an om based on the id
getOMs(ObjectKey[]) - Method in class org.apache.torque.manager.AbstractBaseManager
Gets a list of om's based on id's.
getOMs(List) - Method in class org.apache.torque.manager.AbstractBaseManager
Gets a list of om's based on id's.
getOMs(List, boolean) - Method in class org.apache.torque.manager.AbstractBaseManager
Gets a list of om's based on id's.
getOrCreateDatabase(String) - Method in interface org.apache.torque.avalon.Torque
Returns the database for the key databaseName.
getOrCreateDatabase(String) - Method in class org.apache.torque.TorqueInstance
Returns the database for the key databaseName.
getOrderByClause() - Method in class org.apache.torque.util.Query
Retrieve the order by columns buffer in order to specify which columns are used to sort the results of the query.
getOrderByColumns() - Method in class org.apache.torque.util.Criteria
Get order by columns.
getPage(int) - Method in class org.apache.torque.util.LargeSelect
Retrieve a specific page, if it exists.
getPageProgressText() - Method in class org.apache.torque.util.LargeSelect
A convenience method that provides text showing progress through the selected rows on a page basis.
getPageSize() - Method in class org.apache.torque.util.LargeSelect
Retrieve the page size.
getPaginated() - Method in class org.apache.torque.util.LargeSelect
Provide an indication of whether or not paging of results will be required.
getPeerClass() - Method in class org.apache.torque.map.TableMap
Returns the Peer Class for this table.
getPosition() - Method in class org.apache.torque.map.ColumnMap
Returns the position (one based) of this column in the table.
getPostLimit() - Method in class org.apache.torque.util.Query
Get the Post limit String.
getPrefix() - Method in class org.apache.torque.map.TableMap
Get table prefix name.
getPreLimit() - Method in class org.apache.torque.util.Query
Get the Pre limit String.
getPreviousResults() - Method in class org.apache.torque.util.LargeSelect
Gets the previous page of rows.
getPreviousResultsAvailable() - Method in class org.apache.torque.util.LargeSelect
Indicates if previous results pages are available.
getPrimaryKey() - Method in class org.apache.torque.om.BaseObject
getter for the object primaryKey.
getPrimaryKey() - Method in interface org.apache.torque.om.Persistent
getter for the object primaryKey.
getPrimaryKeyMethod() - Method in class org.apache.torque.map.TableMap
Get the method used to generate primary keys for this table.
getPrimaryKeyMethodInfo() - Method in class org.apache.torque.map.TableMap
Get the information used to generate a primary key
getRecordProgressText() - Method in class org.apache.torque.util.LargeSelect
A convenience method that provides text showing progress through the selected rows on a record basis.
getRegion() - Method in class org.apache.torque.manager.AbstractBaseManager
Get the value of region.
getRelatedColumnName() - Method in class org.apache.torque.map.ColumnMap
Get the column name that this column is related to.
getRelatedName() - Method in class org.apache.torque.map.ColumnMap
Get the table.column that this column is related to.
getRelatedTableName() - Method in class org.apache.torque.map.ColumnMap
Get the table name that this column is related to.
getRightColumn() - Method in class org.apache.torque.util.Criteria.Join
 
getRowcount() - Method in class org.apache.torque.util.Query
Get the rowcount number.
getScale() - Method in class org.apache.torque.map.ColumnMap
Gets the scale set for this column (if any) as set in the XML database definition.
getSchema(String) - Method in interface org.apache.torque.avalon.Torque
This method returns the current schema for a database connection
getSchema() - Method in class org.apache.torque.Database
Returns the database schema for this Database.
getSchema() - Method in class org.apache.torque.dsfactory.AbstractDataSourceFactory
Deprecated. use DatabaseInfo.setSchema() instead. Will be removed in a future version of Torque.
getSchema() - Method in interface org.apache.torque.dsfactory.DataSourceFactory
Deprecated. use DatabaseInfo.getSchema() instead. Will be removed in a future version of Torque.
getSchema(String) - Static method in class org.apache.torque.Torque
This method returns the current schema for a database connection
getSchema(String) - Method in class org.apache.torque.TorqueInstance
This method returns the current schema for a database connection
getSearchParam(String) - Method in class org.apache.torque.util.LargeSelect
Retrieve a search parameter.
getSearchParam(String, String) - Method in class org.apache.torque.util.LargeSelect
Retrieve a search parameter.
getSelectClause() - Method in class org.apache.torque.util.Query
Retrieve the columns buffer in order to specify which columns are returned in this query.
getSelectColumns() - Method in class org.apache.torque.util.Criteria
Get select columns.
getSelectModifiers() - Method in class org.apache.torque.util.Criteria
Get select modifiers.
getSelectModifiers() - Method in class org.apache.torque.util.Query
Retrieve the modifier buffer in order to add modifiers to this query.
getSelectResults(QueryDataSet) - Static method in class org.apache.torque.util.BasePeer
Returns all records in a QueryDataSet as a List of Record objects.
getSelectResults(QueryDataSet, boolean) - Static method in class org.apache.torque.util.BasePeer
Returns all records in a QueryDataSet as a List of Record objects.
getSelectResults(QueryDataSet, int, boolean) - Static method in class org.apache.torque.util.BasePeer
Returns numberOfResults records in a QueryDataSet as a List of Record objects.
getSelectResults(QueryDataSet, int, int, boolean) - Static method in class org.apache.torque.util.BasePeer
Returns numberOfResults records in a QueryDataSet as a List of Record objects.
getSize() - Method in class org.apache.torque.map.ColumnMap
The "precision" value from the XML size="<precision>[,<scale>]" attribute.
getString() - Method in class org.apache.torque.om.StringKey
Access the underlying String object.
getString(String) - Method in class org.apache.torque.util.Criteria
Convenience method to return a String.
getString(String, String) - Method in class org.apache.torque.util.Criteria
Convenience method to return a String.
getStringDelimiter() - Method in class org.apache.torque.adapter.AbstractDBAdapter
Returns the character used to indicate the beginning and end of a piece of text used in a SQL statement (generally a single quote).
getStringDelimiter() - Method in interface org.apache.torque.adapter.DB
Returns the character used to indicate the beginning and end of a piece of text used in a SQL statement (generally a single quote).
getTable() - Method in class org.apache.torque.map.ColumnMap
Returns the map for the table this column belongs to.
getTable(String) - Method in class org.apache.torque.map.DatabaseMap
Get a TableMap for the table by name.
getTable() - Method in class org.apache.torque.util.Criteria.Criterion
Get the table name.
getTableForAlias(String) - Method in class org.apache.torque.util.Criteria
Returns the table name associated with an alias.
getTableMap() - Method in class org.apache.torque.om.BaseObject
Retrieves the TableMap object related to this Table data.
getTableName() - Method in class org.apache.torque.map.ColumnMap
Get the name of the table this column is in.
getTableName(String) - Method in class org.apache.torque.util.Criteria
Method to return a String table name.
getTableName() - Method in class org.apache.torque.util.Query.FromElement
 
getTableName(String, String) - Static method in class org.apache.torque.util.SQLBuilder
Returns a table name from an identifier.
getTableNameForFromClause(String, Criteria) - Static method in class org.apache.torque.util.SQLBuilder
Returns the tablename which can be added to a From Clause.
getTables() - Method in class org.apache.torque.map.DatabaseMap
Get a TableMap[] of all of the tables in the database.
getTableSet(Criteria, SQLBuilder.TableCallback) - Static method in class org.apache.torque.util.SQLBuilder
Returns a set of all tables and possible aliases referenced from a criterion.
getTorqueType() - Method in class org.apache.torque.map.ColumnMap
Get the name of the Torque type of this column.
getTotalPages() - Method in class org.apache.torque.util.LargeSelect
Retrieve the total number of pages of search results that are known to exist (this will be the actual value when the query has completeted (see getQyeryCompleted()).
getTotalRecords() - Method in class org.apache.torque.util.LargeSelect
Retrieve the total number of search result records that are known to exist (this will be the actual value when the query has completeted (see getTotalsFinalized()).
getTotalsFinalized() - Method in class org.apache.torque.util.LargeSelect
Provide access to indicator that the total values for the number of records and pages are now accurate as opposed to known upper limits.
getType() - Method in class org.apache.torque.map.ColumnMap
Get the type of this column.
getUnqualifiedTableName(String) - Static method in class org.apache.torque.util.SQLBuilder
Remove a possible schema name from the table name.
getValue() - Method in class org.apache.torque.om.ComboKey
Get the underlying object.
getValue() - Method in class org.apache.torque.om.ObjectKey
Get the underlying object.
getValue() - Method in class org.apache.torque.util.Criteria.Criterion
Get the value.
getValue(String) - Method in class org.apache.torque.util.Criteria
Method to return the value that was added to Criteria.
getValue(String, String) - Method in class org.apache.torque.util.Criteria
Method to return the value that was added to Criteria.
getWhereClause() - Method in class org.apache.torque.util.Query
Retrieve the where buffer in order to specify the selection criteria E.g.
GREATER_EQUAL - Static variable in class org.apache.torque.util.Criteria
Comparison type.
GREATER_EQUAL - Static variable in class org.apache.torque.util.SqlEnum
 
GREATER_THAN - Static variable in class org.apache.torque.util.Criteria
Comparison type.
GREATER_THAN - Static variable in class org.apache.torque.util.SqlEnum
 

H

handleMultipleRecords(DataSet) - Static method in class org.apache.torque.util.BasePeer
If the user specified that (s)he only wants to retrieve a single record and multiple records are retrieved, this method is called to handle the situation.
hashCode() - Method in class org.apache.torque.manager.MethodCacheKey
 
hashCode() - Method in class org.apache.torque.om.BaseObject
If the primary key is not null, return the hashcode of the primary key.
hashCode() - Method in class org.apache.torque.om.ComboKey
if the underlying key array is not null and the first element is not null this method returns the hashcode of the first element in the key.
hashCode() - Method in class org.apache.torque.om.NumberKey
 
hashCode() - Method in class org.apache.torque.om.ObjectKey
Returns the hashcode of the underlying value (key), if key is not null.
hashCode() - Method in class org.apache.torque.util.Criteria.Criterion
Returns a hash code value for the object.
hashCode() - Method in class org.apache.torque.util.Criteria
Returns the hash code value for this Join.
hashCode() - Method in class org.apache.torque.util.Criteria.Join
Returns the hash code value for this Join.
hashCode() - Method in class org.apache.torque.util.functions.FunctionEnum
returns a hashcode for this object which is consistent with equals()
hashCode() - Method in class org.apache.torque.util.SqlEnum
returns a hashcode for this object which is consistent with equals()
hashtableToByteArray(Hashtable) - Static method in class org.apache.torque.util.VillageUtils
Converts a hashtable to a byte array for storage/serialization.
hasLimit() - Method in class org.apache.torque.util.Query
True if this query has a limit clause registered.
hasResultsAvailable() - Method in class org.apache.torque.util.LargeSelect
Indicates if any results are available.

I

ID_BROKER - Static variable in interface org.apache.torque.adapter.IDMethod
Key generation via the IDBroker table.
ID_GENERATOR_METHODS - Static variable in class org.apache.torque.oid.IDGeneratorFactory
The list of ID generation method types which have associated IdGenerator implementations.
ID_TABLE - Static variable in class org.apache.torque.oid.IDBroker
Name of the ID_TABLE = ID_TABLE
IDBroker - Class in org.apache.torque.oid
This method of ID generation is used to ensure that code is more database independent.
IDBroker(Database) - Constructor for class org.apache.torque.oid.IDBroker
constructs an IdBroker for the given Database.
IDBroker(TableMap) - Constructor for class org.apache.torque.oid.IDBroker
Deprecated. Use IDBroker(DatabaseInfo) instead. Will be removed in a future version of Torque.
IdGenerator - Interface in org.apache.torque.oid
Interface to be implemented by id generators.
IDGeneratorFactory - Class in org.apache.torque.oid
A factory which instantiates IdGenerator implementations.
IDMethod - Interface in org.apache.torque.adapter
Interface for various ID retrieval method types (i.e.
IGNORE_CASE - Static variable in class org.apache.torque.util.BasePeer
Constant criteria key to remove Case Information from search/ordering criteria.
ignoreCase(String) - Method in class org.apache.torque.adapter.AbstractDBAdapter
This method is used to ignore case.
ignoreCase(String) - Method in interface org.apache.torque.adapter.DB
Modifies a SQL snippet such that its case is ignored by the database.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBAxion
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBCloudscape
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBDB2400
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBDB2App
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBDerby
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBFirebird
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBHypersonicSQL
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBInformix
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBInstantDB
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBInterbase
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBMM
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBNone
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBOdbc
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBOracle
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBPostgres
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBSapDB
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBSybase
This method is used to ignore case.
ignoreCase(String) - Method in class org.apache.torque.adapter.DBWeblogic
This method is used to ignore case.
ignoreCaseInOrderBy(String) - Method in class org.apache.torque.adapter.AbstractDBAdapter
This method is used to ignore case in an ORDER BY clause.
ignoreCaseInOrderBy(String) - Method in interface org.apache.torque.adapter.DB
This method is used to ignore case in an ORDER BY clause.
ignoreCaseInOrderBy(String) - Method in class org.apache.torque.adapter.DBFirebird
This method is used to ignore case in an ORDER BY clause.
ignoreCaseInOrderBy(String) - Method in class org.apache.torque.adapter.DBHypersonicSQL
 
ignoreCaseInOrderBy(String) - Method in class org.apache.torque.adapter.DBInterbase
This method is used to ignore case in an ORDER BY clause.
ILIKE - Static variable in class org.apache.torque.util.Criteria
Comparison type.
ILIKE - Static variable in class org.apache.torque.util.SqlEnum
 
IN - Static variable in class org.apache.torque.util.Criteria
Comparison type.
IN - Static variable in class org.apache.torque.util.SqlEnum
 
indexOf(String) - Method in class org.apache.torque.util.ListOrderedMapCI
Gets the index of the specified key.
InheritanceMap - Class in org.apache.torque.map
InheritanceMap is used to model OM inheritance classes.
InheritanceMap(ColumnMap, String, String, String) - Constructor for class org.apache.torque.map.InheritanceMap
Create an inheritance map object.
init(Serializable, String) - Method in class org.apache.torque.manager.MethodCacheKey
Initialize key for method with no arguments.
init(Serializable, String, Serializable) - Method in class org.apache.torque.manager.MethodCacheKey
Initialize key for method with one argument.
init(Serializable, String, Serializable, Serializable) - Method in class org.apache.torque.manager.MethodCacheKey
Initialize key for method with two arguments.
init(Serializable, String, Serializable, Serializable, Serializable) - Method in class org.apache.torque.manager.MethodCacheKey
Initialize key for method with two arguments.
init(Serializable[]) - Method in class org.apache.torque.manager.MethodCacheKey
Initialize key for method with more than three arguments.
init(String) - Static method in class org.apache.torque.Torque
Initialization of Torque with a properties file.
init(Configuration) - Static method in class org.apache.torque.Torque
Initialization of Torque with a properties file.
init(String) - Method in class org.apache.torque.TorqueInstance
Initialization of Torque with a properties file.
init(Configuration) - Method in class org.apache.torque.TorqueInstance
Initialization of Torque with a Configuration object.
INIT_CLASS_NAME_FORMAT - Static variable in class org.apache.torque.map.DatabaseMap
Format used to create create the class name for initializing a DB specific map
initColumnNames(Column[]) - Static method in class org.apache.torque.util.BasePeer
Convenience method to create a String array of column names.
initCPDS(Configuration) - Method in class org.apache.torque.dsfactory.AbstractDataSourceFactory
Initializes the ConnectionPoolDataSource.
initCriteriaKeys(String, String[]) - Static method in class org.apache.torque.util.BasePeer
Convenience method to create a String array of criteria keys.
initialize() - Method in class org.apache.torque.avalon.TorqueComponent
 
initialize(Configuration) - Method in class org.apache.torque.dsfactory.AbstractDataSourceFactory
Initialize the factory.
initialize(Configuration) - Method in interface org.apache.torque.dsfactory.DataSourceFactory
Initialize the factory.
initialize(Configuration) - Method in class org.apache.torque.dsfactory.JndiDataSourceFactory
 
initialize(Configuration) - Method in class org.apache.torque.dsfactory.PerUserPoolDataSourceFactory
 
initialize(Configuration) - Method in class org.apache.torque.dsfactory.SharedPoolDataSourceFactory
 
initialize() - Method in class org.apache.torque.map.DatabaseMap
Fully populate this DatabaseMap with all the TablesMaps.
initManagerMappings(Configuration) - Method in class org.apache.torque.TorqueInstance
Creates a mapping between classes and their manager classes.
initTableColumns(Schema) - Static method in class org.apache.torque.util.BasePeer
Creates a Column array for a table based on its Schema.
initTableSchema(String) - Static method in class org.apache.torque.util.BasePeer
Sets up a Schema for a table.
initTableSchema(String, String) - Static method in class org.apache.torque.util.BasePeer
Sets up a Schema for a table.
INNER_JOIN - Static variable in class org.apache.torque.util.Criteria
"INNER JOIN" SQL statement
INNER_JOIN - Static variable in class org.apache.torque.util.SqlEnum
 
intValue() - Method in class org.apache.torque.om.NumberKey
Returns the value of this NumberKey as an int.
invalidateResult() - Method in class org.apache.torque.util.LargeSelect
Clear the query result so that the query is reexecuted when the next page is retrieved.
isAutoIncrement() - Method in class org.apache.torque.map.ColumnMap
Returns whether this column is an autoincrement column.
isBuilt() - Method in interface org.apache.torque.map.MapBuilder
Tells us if the database mapping is built so that we can avoid re-building it repeatedly.
isCascade() - Method in class org.apache.torque.util.Criteria
Is cascade set?
isConnectionRequired() - Method in class org.apache.torque.oid.AutoIncrementIdGenerator
A flag to determine whether a Connection is required to generate an id.
isConnectionRequired() - Method in class org.apache.torque.oid.IDBroker
A flag to determine whether a Connection is required to generate an id.
isConnectionRequired() - Method in interface org.apache.torque.oid.IdGenerator
A flag to determine whether a Connection is required to generate an id.
isConnectionRequired() - Method in class org.apache.torque.oid.SequenceIdGenerator
A flag to determine whether a Connection is required to generate an id.
isDistinct() - Method in class org.apache.torque.util.functions.Aggregate.AgregateFunction
Should the column have DISTINCT added in front of it?
isForeignKey() - Method in class org.apache.torque.map.ColumnMap
Is this column a foreign key?
isIgnoreCase() - Method in class org.apache.torque.util.Criteria.Criterion
Is ignore case on or off?
isIgnoreCase() - Method in class org.apache.torque.util.Criteria
Is ignore case on or off?
isInit() - Method in interface org.apache.torque.avalon.Torque
Determine whether Torque has already been initialized.
isInit() - Static method in class org.apache.torque.Torque
Determine whether Torque has already been initialized.
isInit() - Method in class org.apache.torque.TorqueInstance
Determine whether Torque has already been initialized.
isModified() - Method in class org.apache.torque.om.BaseObject
Returns whether the object has been modified.
isModified() - Method in interface org.apache.torque.om.Persistent
Returns whether the object has been modified, since it was last retrieved from storage.
isNew() - Method in class org.apache.torque.om.BaseObject
Returns whether the object has ever been saved.
isNew() - Method in interface org.apache.torque.om.Persistent
Returns whether the object has ever been saved.
isNotNull() - Method in class org.apache.torque.map.ColumnMap
Is null value allowed ?
ISNOTNULL - Static variable in class org.apache.torque.util.Criteria
"IS NOT NULL" null comparison
ISNOTNULL - Static variable in class org.apache.torque.util.SqlEnum
 
ISNULL - Static variable in class org.apache.torque.util.Criteria
"IS NULL" null comparison
ISNULL - Static variable in class org.apache.torque.util.SqlEnum
 
isPk() - Method in class org.apache.torque.map.ColumnMap
Returns whether this column is a primary key.
isPostInsert() - Method in class org.apache.torque.oid.AutoIncrementIdGenerator
A flag to determine the timing of the id generation
isPostInsert() - Method in class org.apache.torque.oid.IDBroker
A flag to determine the timing of the id generation
isPostInsert() - Method in interface org.apache.torque.oid.IdGenerator
A flag to determine the timing of the id generation
isPostInsert() - Method in class org.apache.torque.oid.SequenceIdGenerator
A flag to determine the timing of the id generation
isPrimaryKey() - Method in class org.apache.torque.map.ColumnMap
Is this column a primary key?
isPriorToInsert() - Method in class org.apache.torque.oid.AutoIncrementIdGenerator
A flag to determine the timing of the id generation
isPriorToInsert() - Method in class org.apache.torque.oid.IDBroker
A flag to determine the timing of the id generation *
isPriorToInsert() - Method in interface org.apache.torque.oid.IdGenerator
A flag to determine the timing of the id generation
isPriorToInsert() - Method in class org.apache.torque.oid.SequenceIdGenerator
A flag to determine the timing of the id generation
isProtected() - Method in class org.apache.torque.map.ColumnMap
Returns whether getters and setters are generated with the access modifier "protected" rather than "public".
isSingleRecord() - Method in class org.apache.torque.util.Criteria
Is single record?
isUseInheritance() - Method in class org.apache.torque.map.ColumnMap
Returns whether this column uses inheritance subclasses.
isUseInheritance() - Method in class org.apache.torque.map.TableMap
Returns whether this table uses inheritance.
isUseManager() - Method in class org.apache.torque.map.TableMap
Returns whether managers are used for this table.
isUsePrimitive() - Method in class org.apache.torque.map.ColumnMap
Returns whether this colum uses primitive values rather than objects.
isUseTransaction() - Method in class org.apache.torque.util.Criteria
called by BasePeer to determine whether the sql command specified by this criteria must be wrapped in a transaction.

J

javanameMethod(String) - Method in class org.apache.torque.map.DatabaseMap
Converts a database schema name to java object name.
JNDI_KEY - Static variable in class org.apache.torque.dsfactory.JndiDataSourceFactory
Key for the configuration which contains jndi properties.
JndiDataSourceFactory - Class in org.apache.torque.dsfactory
A factory that looks up the DataSource from JNDI.
JndiDataSourceFactory() - Constructor for class org.apache.torque.dsfactory.JndiDataSourceFactory
 
JOIN - Static variable in class org.apache.torque.util.Criteria
Comparison type.
JOIN - Static variable in class org.apache.torque.util.SqlEnum
 
JoinBuilder - Class in org.apache.torque.util
Factored out code that is used to generate Join Code.

K

key - Variable in class org.apache.torque.om.ObjectKey
The underlying key value.
keyFor(BigDecimal) - Static method in class org.apache.torque.om.SimpleKey
Creates a SimpleKey equivalent to key
keyFor(int) - Static method in class org.apache.torque.om.SimpleKey
Creates a SimpleKey equivalent to key
keyFor(long) - Static method in class org.apache.torque.om.SimpleKey
Creates a SimpleKey equivalent to key
keyFor(double) - Static method in class org.apache.torque.om.SimpleKey
Creates a SimpleKey equivalent to key
keyFor(Number) - Static method in class org.apache.torque.om.SimpleKey
Creates a SimpleKey equivalent to key
keyFor(NumberKey) - Static method in class org.apache.torque.om.SimpleKey
Creates a SimpleKey equivalent to key
keyFor(String) - Static method in class org.apache.torque.om.SimpleKey
Creates a SimpleKey equivalent to key
keyFor(StringKey) - Static method in class org.apache.torque.om.SimpleKey
Creates a SimpleKey equivalent to key
keyFor(Date) - Static method in class org.apache.torque.om.SimpleKey
Creates a SimpleKey equivalent to key
keyFor(DateKey) - Static method in class org.apache.torque.om.SimpleKey
Creates a SimpleKey equivalent to key

L

LargeSelect - Class in org.apache.torque.util
This class can be used to retrieve a large result set from a database query.
LargeSelect(Criteria, int) - Constructor for class org.apache.torque.util.LargeSelect
Creates a LargeSelect whose results are returned as a List containing a maximum of pageSize Village Record objects at a time, maintaining a maximum of LargeSelect.memoryPageLimit pages of results in memory.
LargeSelect(Criteria, int, int) - Constructor for class org.apache.torque.util.LargeSelect
Creates a LargeSelect whose results are returned as a List containing a maximum of pageSize Village Record objects at a time, maintaining a maximum of memoryPageLimit pages of results in memory.
LargeSelect(Criteria, int, String) - Constructor for class org.apache.torque.util.LargeSelect
Creates a LargeSelect whose results are returned as a List containing a maximum of pageSize objects of the type defined within the class named returnBuilderClassName at a time, maintaining a maximum of LargeSelect.memoryPageLimit pages of results in memory.
LargeSelect(Criteria, int, int, String) - Constructor for class org.apache.torque.util.LargeSelect
Creates a LargeSelect whose results are returned as a List containing a maximum of pageSize objects of the type defined within the class named returnBuilderClassName at a time, maintaining a maximum of memoryPageLimit pages of results in memory.
LEFT_JOIN - Static variable in class org.apache.torque.util.Criteria
"LEFT JOIN" SQL statement
LEFT_JOIN - Static variable in class org.apache.torque.util.SqlEnum
 
LESS_EQUAL - Static variable in class org.apache.torque.util.Criteria
Comparison type.
LESS_EQUAL - Static variable in class org.apache.torque.util.SqlEnum
 
LESS_THAN - Static variable in class org.apache.torque.util.Criteria
Comparison type.
LESS_THAN - Static variable in class org.apache.torque.util.SqlEnum
 
LIKE - Static variable in class org.apache.torque.util.Criteria
Comparison type.
LIKE - Static variable in class org.apache.torque.util.SqlEnum
 
LIMIT_STYLE_DB2 - Static variable in interface org.apache.torque.adapter.DB
Deprecated. This should not be exposed to the outside
LIMIT_STYLE_MYSQL - Static variable in interface org.apache.torque.adapter.DB
Deprecated. This should not be exposed to the outside
LIMIT_STYLE_NONE - Static variable in interface org.apache.torque.adapter.DB
Deprecated. This should not be exposed to the outside
LIMIT_STYLE_ORACLE - Static variable in interface org.apache.torque.adapter.DB
Deprecated. This should not be exposed to the outside
LIMIT_STYLE_POSTGRES - Static variable in interface org.apache.torque.adapter.DB
Deprecated. This should not be exposed to the outside
LIMIT_STYLE_SYBASE - Static variable in interface org.apache.torque.adapter.DB
Deprecated. This should not be exposed to the outside
listenersMap - Variable in class org.apache.torque.manager.AbstractBaseManager
 
ListOrderedMapCI - Class in org.apache.torque.util
A subclass of the Apache Commons ListOrderedMap that has case insensitive String key methods.
ListOrderedMapCI() - Constructor for class org.apache.torque.util.ListOrderedMapCI
Constructs a new empty ListOrderedMap.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.AbstractDBAdapter
Locks the specified table.
lockTable(Connection, String) - Method in interface org.apache.torque.adapter.DB
Locks the specified table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBAxion
Locks the specified table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBCloudscape
Locks the specified table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBDB2App
Locks the specified table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBDerby
Locks the specified table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBFirebird
Locks the specified table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBHypersonicSQL
Locks the specified table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBInformix
The method is used to lock a table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBInstantDB
Locks the specified table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBInterbase
Locks the specified table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBMM
Locks the specified table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBNone
Locks the specified table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBOdbc
Locks the specified table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBOracle
Locks the specified table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBPostgres
Locks the specified table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBSapDB
Locks the specified table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBSybase
Locks the specified table.
lockTable(Connection, String) - Method in class org.apache.torque.adapter.DBWeblogic
Locks the specified table.
log - Static variable in class org.apache.torque.manager.AbstractBaseManager
the log
log - Static variable in class org.apache.torque.util.BasePeer
the log
log - Static variable in class org.apache.torque.util.SQLBuilder
Logging
longValue() - Method in class org.apache.torque.om.NumberKey
Returns the value of this NumberKey as a long.
looseEquals(Object) - Method in class org.apache.torque.om.ComboKey
keyObj is equal to this ComboKey if keyObj is a ComboKey, String, ObjectKey[], or String[] that contains the same information this key contains.

M

makeObject() - Method in class org.apache.torque.manager.MethodCacheKey.Factory
Creates an instance that can be returned by the pool.
MANAGER_PREFIX - Static variable in class org.apache.torque.Torque
A prefix for Manager properties in the configuration.
MANAGER_SUFFIX - Static variable in class org.apache.torque.Torque
A Service property determining its implementing class name .
MapBuilder - Interface in org.apache.torque.map
MapBuilders are wrappers around DatabaseMaps.
MAX - Static variable in class org.apache.torque.util.functions.FunctionEnum
The MAX( [Distinct] EXPR ) function id
max(String, Object, boolean) - Static method in class org.apache.torque.util.functions.FunctionFactory
Create a MAX SQL function implementation.
max(Object) - Static method in class org.apache.torque.util.functions.FunctionFactory
Convenience method for creating a non-distinct function that uses the default DB.
MethodCacheKey - Class in org.apache.torque.manager
 
MethodCacheKey() - Constructor for class org.apache.torque.manager.MethodCacheKey
 
MethodCacheKey(Serializable, String) - Constructor for class org.apache.torque.manager.MethodCacheKey
 
MethodCacheKey(Serializable, String, Serializable) - Constructor for class org.apache.torque.manager.MethodCacheKey
 
MethodCacheKey(Serializable, String, Serializable, Serializable) - Constructor for class org.apache.torque.manager.MethodCacheKey
 
MethodCacheKey(Serializable, String, Serializable, Serializable, Serializable) - Constructor for class org.apache.torque.manager.MethodCacheKey
 
MethodCacheKey(Serializable[]) - Constructor for class org.apache.torque.manager.MethodCacheKey
 
MethodCacheKey.Factory - Class in org.apache.torque.manager
 
MethodCacheKey.Factory() - Constructor for class org.apache.torque.manager.MethodCacheKey.Factory
 
MethodResultCache - Class in org.apache.torque.manager
This class provides a cache for convenient storage of method results.
MethodResultCache(GroupCacheAccess) - Constructor for class org.apache.torque.manager.MethodResultCache
 
MethodResultCache() - Constructor for class org.apache.torque.manager.MethodResultCache
Allows subclasses to have ctors that do not require a cache.
MIN - Static variable in class org.apache.torque.util.functions.FunctionEnum
The MIN( [Distinct] EXPR ) function id
min(String, Object, boolean) - Static method in class org.apache.torque.util.functions.FunctionFactory
Create a MIN SQL function implementation.
min(Object) - Static method in class org.apache.torque.util.functions.FunctionFactory
Convenience method for creating a non-distinct function that uses the default DB.
mrCache - Variable in class org.apache.torque.manager.AbstractBaseManager
method results cache

N

NATIVE - Static variable in interface org.apache.torque.adapter.IDMethod
Key generation via database-specific ID method (i.e.
NEW_ID - Static variable in class org.apache.torque.om.BaseObject
The constant denoting an unset numeric database identifier.
NEXT_ID - Static variable in class org.apache.torque.oid.IDBroker
Fully qualified Next_ID column name
NO_ID_METHOD - Static variable in interface org.apache.torque.adapter.IDMethod
No RDBMS key generation (keys may be generated by the application).
NoOpMethodResultCache - Class in org.apache.torque.manager
This class provides a cache for convenient storage of method results
NoOpMethodResultCache(GroupCacheAccess) - Constructor for class org.apache.torque.manager.NoOpMethodResultCache
 
normalizeName(String) - Method in class org.apache.torque.map.ColumnMap
Makes sure that the column names don't include table prefixes.
NoRowsException - Exception in org.apache.torque
This exception indicates that no rows were returned but atleast one should have been returned.
NoRowsException() - Constructor for exception org.apache.torque.NoRowsException
Constructs a new TorqueException without specified detail message.
NoRowsException(String) - Constructor for exception org.apache.torque.NoRowsException
Constructs a new TorqueException with specified detail message.
NoRowsException(Throwable) - Constructor for exception org.apache.torque.NoRowsException
Constructs a new TorqueException with specified nested Throwable.
NoRowsException(String, Throwable) - Constructor for exception org.apache.torque.NoRowsException
Constructs a new TorqueException with specified detail message and nested Throwable.
NOT_EQUAL - Static variable in class org.apache.torque.util.Criteria
Comparison type.
NOT_EQUAL - Static variable in class org.apache.torque.util.SqlEnum
 
NOT_ILIKE - Static variable in class org.apache.torque.util.Criteria
Comparison type.
NOT_ILIKE - Static variable in class org.apache.torque.util.SqlEnum
 
NOT_IN - Static variable in class org.apache.torque.util.Criteria
Comparison type.
NOT_IN - Static variable in class org.apache.torque.util.SqlEnum
 
NOT_LIKE - Static variable in class org.apache.torque.util.Criteria
Comparison type.
NOT_LIKE - Static variable in class org.apache.torque.util.SqlEnum
 
notifyListeners(List, Persistent, Persistent) - Method in class org.apache.torque.manager.AbstractBaseManager
 
NumberKey - Class in org.apache.torque.om
This class can be used as an ObjectKey to uniquely identify an object within an application where the id consists of a single entity such a GUID or the value of a db row's primary key.
NumberKey() - Constructor for class org.apache.torque.om.NumberKey
Creates a NumberKey whose internal representation will be set later, through a set method
NumberKey(String) - Constructor for class org.apache.torque.om.NumberKey
Creates a NumberKey equivalent to key.
NumberKey(BigDecimal) - Constructor for class org.apache.torque.om.NumberKey
Creates a NumberKey equivalent to key.
NumberKey(NumberKey) - Constructor for class org.apache.torque.om.NumberKey
Creates a NumberKey equivalent to key.
NumberKey(long) - Constructor for class org.apache.torque.om.NumberKey
Creates a NumberKey equivalent to key.
NumberKey(double) - Constructor for class org.apache.torque.om.NumberKey
Creates a NumberKey equivalent to key.
NumberKey(int) - Constructor for class org.apache.torque.om.NumberKey
Creates a NumberKey equivalent to key.
NumberKey(Number) - Constructor for class org.apache.torque.om.NumberKey
Creates a NumberKey equivalent to key.

O

ObjectKey - Class in org.apache.torque.om
This class can be used to uniquely identify an object within an application.
ObjectKey() - Constructor for class org.apache.torque.om.ObjectKey
Initializes the internal key value to null.
ON - Static variable in class org.apache.torque.util.SqlEnum
 
OR - Static variable in class org.apache.torque.util.Criteria.Criterion
 
or(Criteria.Criterion) - Method in class org.apache.torque.util.Criteria.Criterion
Append an OR Criterion onto this Criterion's list.
or(Criteria.Criterion) - Method in class org.apache.torque.util.Criteria
This method adds a prepared Criterion object to the Criteria.
or(String, Object) - Method in class org.apache.torque.util.Criteria
This method adds a new criterion to the list of criterias.
or(String, Object, SqlEnum) - Method in class org.apache.torque.util.Criteria
This method adds a new criterion to the list of criterias.
or(String, String, Object) - Method in class org.apache.torque.util.Criteria
This method adds a new criterion to the list of criterias.
or(String, String, Object, SqlEnum) - Method in class org.apache.torque.util.Criteria
This method adds a new criterion to the list of criterias.
or(String, boolean) - Method in class org.apache.torque.util.Criteria
Convenience method to add a boolean to Criteria.
or(String, boolean, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add a boolean to Criteria.
or(String, int) - Method in class org.apache.torque.util.Criteria
Convenience method to add an int to Criteria.
or(String, int, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add an int to Criteria.
or(String, long) - Method in class org.apache.torque.util.Criteria
Convenience method to add a long to Criteria.
or(String, long, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add a long to Criteria.
or(String, float) - Method in class org.apache.torque.util.Criteria
Convenience method to add a float to Criteria.
or(String, float, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add a float to Criteria.
or(String, double) - Method in class org.apache.torque.util.Criteria
Convenience method to add a double to Criteria.
or(String, double, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add a double to Criteria.
orDate(String, int, int, int) - Method in class org.apache.torque.util.Criteria
Convenience method to add a Date object specified by year, month, and date into the Criteria.
orDate(String, int, int, int, SqlEnum) - Method in class org.apache.torque.util.Criteria
Convenience method to add a Date object specified by year, month, and date into the Criteria.
ORDER_BY - Static variable in class org.apache.torque.util.BasePeer
Constant criteria key to reference ORDER BY columns.
org.apache.torque - package org.apache.torque
Torque is an object-relational mapper for Java.
org.apache.torque.adapter - package org.apache.torque.adapter
Adapters between Torque and various databases.
org.apache.torque.avalon - package org.apache.torque.avalon
Avalon component implementation.
org.apache.torque.dsfactory - package org.apache.torque.dsfactory
Torque's API for creation of various javax.sql.DataSource implementations.
org.apache.torque.manager - package org.apache.torque.manager
A manager/factory API for use with Torque-generated data beans.
org.apache.torque.map - package org.apache.torque.map
Description of the schema layout.
org.apache.torque.oid - package org.apache.torque.oid
The ID broker, an API to provide persistent object identifiers, as described by Scott Ambler's paper on "Enterprise-Ready Object IDs".
org.apache.torque.om - package org.apache.torque.om
API for the classic Torque-generated object model.
org.apache.torque.util - package org.apache.torque.util
Misc.
org.apache.torque.util.functions - package org.apache.torque.util.functions
 
orIn(String, Object[]) - Method in class org.apache.torque.util.Criteria
Adds an 'IN' clause with the criteria supplied as an Object array.
orIn(String, int[]) - Method in class org.apache.torque.util.Criteria
Adds an 'IN' clause with the criteria supplied as an int array.
orIn(String, List) - Method in class org.apache.torque.util.Criteria
Adds an 'IN' clause with the criteria supplied as a List.
orNotIn(String, Object[]) - Method in class org.apache.torque.util.Criteria
Adds a 'NOT IN' clause with the criteria supplied as an Object array.
orNotIn(String, int[]) - Method in class org.apache.torque.util.Criteria
Adds a 'NOT IN' clause with the criteria supplied as an int array.
orNotIn(String, List) - Method in class org.apache.torque.util.Criteria
Adds a 'NOT IN' clause with the criteria supplied as a List.

P

passivateObject(Object) - Method in class org.apache.torque.manager.MethodCacheKey.Factory
Uninitialize an instance to be returned to the pool.
PATH_KEY - Static variable in class org.apache.torque.dsfactory.JndiDataSourceFactory
Key for the configuration property which contains the jndi path.
Persistent - Interface in org.apache.torque.om
This interface defines methods related to saving an object
PerUserPoolDataSourceFactory - Class in org.apache.torque.dsfactory
A factory that looks up the DataSource using the JDBC2 pool methods.
PerUserPoolDataSourceFactory() - Constructor for class org.apache.torque.dsfactory.PerUserPoolDataSourceFactory
 
POOL_KEY - Static variable in class org.apache.torque.dsfactory.AbstractDataSourceFactory
"pool" Key for the configuration
printStackTrace() - Method in exception org.apache.torque.TorqueRuntimeException
Prints the stack trace of this exception the the standar error stream.
printStackTrace(PrintStream) - Method in exception org.apache.torque.TorqueRuntimeException
Prints the stack trace of this exception to the specified print stream.
printStackTrace(PrintWriter) - Method in exception org.apache.torque.TorqueRuntimeException
Prints the stack trace of this exception to the specified print writer.
printStackTrace(PrintWriter, int) - Method in exception org.apache.torque.TorqueRuntimeException
Prints the stack trace of this exception skiping a specified number of stack frames.
process(String, String, Record) - Method in interface org.apache.torque.util.BasePeer.ProcessCallback
 
process(Criteria.Criterion, List) - Method in interface org.apache.torque.util.SQLBuilder.QueryCallback
The callback for building a query String
process(Set, String, Criteria) - Method in interface org.apache.torque.util.SQLBuilder.TableCallback
Callback Method for getTableSet()
processJoins(DB, DatabaseMap, Criteria, Query) - Static method in class org.apache.torque.util.JoinBuilder
adds the Joins from the criteria to the query
put(Object, Serializable, String) - Method in class org.apache.torque.manager.MethodResultCache
 
put(Object, Serializable, String, Serializable) - Method in class org.apache.torque.manager.MethodResultCache
 
put(Object, Serializable, String, Serializable, Serializable) - Method in class org.apache.torque.manager.MethodResultCache
 
put(Object, Serializable, String, Serializable, Serializable, Serializable) - Method in class org.apache.torque.manager.MethodResultCache
 
put(Object, Serializable[]) - Method in class org.apache.torque.manager.MethodResultCache
 
put(Object, Serializable, String) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
put(Object, Serializable, String, Serializable) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
put(Object, Serializable, String, Serializable, Serializable) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
put(Object, Serializable, String, Serializable, Serializable, Serializable) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
put(Object, Serializable[]) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
put(Object, Object) - Method in class org.apache.torque.util.Criteria
Overrides Hashtable put, so that this object is returned instead of the value previously in the Criteria object.
put(String, Object) - Method in class org.apache.torque.util.ListOrderedMapCI
Adds a value to the end of the list with the specified key.
put(int, String, Object) - Method in class org.apache.torque.util.ListOrderedMapCI
Puts a key-value mapping into the map at the specified index.
putAll(Map) - Method in class org.apache.torque.util.Criteria
Copies all of the mappings from the specified Map to this Criteria These mappings will replace any mappings that this Criteria had for any of the keys currently in the specified Map.
putImpl(MethodCacheKey, Object) - Method in class org.apache.torque.manager.MethodResultCache
 
putImpl(MethodCacheKey, Object) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
putInstanceImpl(Persistent) - Method in class org.apache.torque.manager.AbstractBaseManager
Put an object into the cache
putInstanceImpl(Serializable, Persistent) - Method in class org.apache.torque.manager.AbstractBaseManager
Put an object into the cache

Q

QUANTITY - Static variable in class org.apache.torque.oid.IDBroker
Fully qualified Quantity column name
Query - Class in org.apache.torque.util
Used to assemble an SQL SELECT query.
Query() - Constructor for class org.apache.torque.util.Query
 
Query.FromElement - Class in org.apache.torque.util
This class describes an Element in the From-part of a SQL clause.
Query.FromElement(String, SqlEnum, String) - Constructor for class org.apache.torque.util.Query.FromElement
Constructor
quoteAndEscapeText(String, DB) - Static method in class org.apache.torque.util.SqlExpression
Quotes and escapes raw text for placement in a SQL expression.

R

refreshedObject(Persistent) - Method in interface org.apache.torque.manager.CacheListener
 
registerAsListener() - Method in class org.apache.torque.manager.AbstractBaseManager
NoOp version.
registerMapBuilder(String) - Method in interface org.apache.torque.avalon.Torque
Register a MapBuilder
registerMapBuilder(MapBuilder) - Method in interface org.apache.torque.avalon.Torque
Register a MapBuilder
registerMapBuilder(String) - Static method in class org.apache.torque.Torque
Register a MapBuilder
registerMapBuilder(MapBuilder) - Static method in class org.apache.torque.Torque
Register a MapBuilder
registerMapBuilder(String) - Method in class org.apache.torque.TorqueInstance
Register a MapBuilder
registerMapBuilder(MapBuilder) - Method in class org.apache.torque.TorqueInstance
Register a MapBuilder
remove(Serializable, String) - Method in class org.apache.torque.manager.MethodResultCache
 
remove(Serializable, String, Serializable) - Method in class org.apache.torque.manager.MethodResultCache
 
remove(Serializable, String, Serializable, Serializable) - Method in class org.apache.torque.manager.MethodResultCache
 
remove(Serializable, String, Serializable, Serializable, Serializable) - Method in class org.apache.torque.manager.MethodResultCache
 
remove(Serializable[]) - Method in class org.apache.torque.manager.MethodResultCache
 
remove(Serializable, String) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
remove(Serializable, String, Serializable) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
remove(Serializable, String, Serializable, Serializable) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
remove(Serializable, String, Serializable, Serializable, Serializable) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
remove(Serializable[]) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
remove(String) - Method in class org.apache.torque.util.Criteria
Remove an object from the criteria.
remove(String) - Method in class org.apache.torque.util.ListOrderedMapCI
Removes the mapping for the specified key.
removeAll(Serializable, String) - Method in class org.apache.torque.manager.MethodResultCache
 
removeAll(Serializable, String) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
removeImpl(MethodCacheKey) - Method in class org.apache.torque.manager.MethodResultCache
 
removeImpl(MethodCacheKey) - Method in class org.apache.torque.manager.NoOpMethodResultCache
 
removeInstanceImpl(Serializable) - Method in class org.apache.torque.manager.AbstractBaseManager
Remove an object from the cache
removeSearchParam(String) - Method in class org.apache.torque.util.LargeSelect
Remove a value from the search parameters.
removeUnderScores(String) - Method in class org.apache.torque.map.TableMap
Removes the PREFIX, removes the underscores and makes first letter caps.
resetModified() - Method in class org.apache.torque.om.BaseObject
Sets the modified state for the object to be false.
retrieveStoredOM(ObjectKey) - Method in class org.apache.torque.manager.AbstractBaseManager
Retrieve an object from persistent storage
retrieveStoredOMs(List) - Method in class org.apache.torque.manager.AbstractBaseManager
Gets a list of om's based on id's.
RIGHT_JOIN - Static variable in class org.apache.torque.util.Criteria
"RIGHT JOIN" SQL statement
RIGHT_JOIN - Static variable in class org.apache.torque.util.SqlEnum
 
ROLE - Static variable in interface org.apache.torque.avalon.Torque
The avalon role.
rollback(Connection) - Static method in class org.apache.torque.util.Transaction
Roll back a transaction in databases that support transactions.
run() - Method in class org.apache.torque.oid.IDBroker
A background thread that tries to ensure that when someone asks for ids, that there are already some loaded and that the database is not accessed.
run() - Method in class org.apache.torque.util.LargeSelect
A background thread that retrieves the rows.

S

safeRollback(Connection) - Static method in class org.apache.torque.util.Transaction
Roll back a transaction without throwing errors if they occur.
save() - Method in class org.apache.torque.om.BaseObject
 
save(String) - Method in class org.apache.torque.om.BaseObject
 
save(Connection) - Method in class org.apache.torque.om.BaseObject
 
save() - Method in interface org.apache.torque.om.Persistent
Saves the object.
save(String) - Method in interface org.apache.torque.om.Persistent
Stores the object in the database.
save(Connection) - Method in interface org.apache.torque.om.Persistent
Stores the object in the database.
SCHEMA_KEY - Static variable in class org.apache.torque.dsfactory.AbstractDataSourceFactory
"schema" Key for the configuration
SCHEMA_SEPARATOR_CHAR - Static variable in class org.apache.torque.map.DatabaseMap
The character which separates the schema name from the table name.
SEPARATOR - Static variable in class org.apache.torque.om.ComboKey
The single character used to separate key values in a string.
SEPARATOR_STRING - Static variable in class org.apache.torque.om.ComboKey
The single character used to separate key values in a string.
SEQUENCE - Static variable in interface org.apache.torque.adapter.IDMethod
Key generation via sequences.
SequenceIdGenerator - Class in org.apache.torque.oid
This generator works with databases that have an sql syntax for getting an id prior to inserting a row into the database.
SequenceIdGenerator(DB, String) - Constructor for class org.apache.torque.oid.SequenceIdGenerator
Creates an IdGenerator which will work with the specified database.
setAdapter(DB) - Method in class org.apache.torque.Database
Sets the adapter for this database.
setAll() - Method in class org.apache.torque.util.Criteria
Adds "ALL " to the SQL statement.
setArgumentList(List) - Method in class org.apache.torque.util.functions.AbstractFunction
Set the full function argument list.
setArguments(Object[]) - Method in class org.apache.torque.util.functions.Aggregate.AgregateFunction
Assumes that there are one or two arguments being specified.
setArguments(Object[]) - Method in interface org.apache.torque.util.functions.SQLFunction
Sets the function specific arguments.
setAutoIncrement(boolean) - Method in class org.apache.torque.map.ColumnMap
Sets whether this column is an autoincrement column.
setByName(String, Object) - Method in class org.apache.torque.om.BaseObject
Set a field in the object by field (Java) name.
setByPeerName(String, Object) - Method in class org.apache.torque.om.BaseObject
Set field values by Peer Field Name
setByPosition(int, Object) - Method in class org.apache.torque.om.BaseObject
Set field values by it's position (zero based) in the XML schema.
setCascade(boolean) - Method in class org.apache.torque.util.Criteria
Set cascade.
setClassName(String) - Method in class org.apache.torque.manager.AbstractBaseManager
Set the classname to instantiate for getInstance()
setClassName(String) - Method in class org.apache.torque.map.InheritanceMap
Sets the class name for this InheritanceMap.
setColumn(ColumnMap) - Method in class org.apache.torque.map.InheritanceMap
Sets the column this inheritance map belongs to.
setConfiguration(Configuration) - Method in class org.apache.torque.oid.IDBroker
Set the configuration
setConfiguration(Configuration) - Static method in class org.apache.torque.Torque
Sets the configuration for Torque and all dependencies.
setConfiguration(Configuration) - Method in class org.apache.torque.TorqueInstance
Sets the configuration for Torque and all dependencies.
setDataSourceFactory(DataSourceFactory) - Method in class org.apache.torque.Database
Sets the DataSourceFactory for this database.
setDB(DB) - Method in class org.apache.torque.util.Criteria.Criterion
Set the value of db.
setDbName(String) - Method in class org.apache.torque.util.Criteria
Set the DatabaseMap name.
setDBName(String) - Method in class org.apache.torque.util.functions.AbstractFunction
 
setDBName(String) - Method in interface org.apache.torque.util.functions.SQLFunction
Sets the Torque DB name this function is being used with.
setDefault(String) - Method in class org.apache.torque.map.ColumnMap
Sets the default value for this column.
setDescription(String) - Method in class org.apache.torque.map.ColumnMap
Sets the description for this column.
setDescription(String) - Method in class org.apache.torque.map.TableMap
Sets the table description.
setDistinct() - Method in class org.apache.torque.util.Criteria
Adds "DISTINCT " to the SQL statement.
setExcludeExprColumns(boolean) - Method in class org.apache.torque.util.SummaryHelper
Define if unnamed output columns which get labeled as EXPR{index#}) should be included in the the output set.
setExtends(String) - Method in class org.apache.torque.map.InheritanceMap
Sets the ancestor class for the class described by this InheritanceMap.
setForeignKey(String) - Method in class org.apache.torque.map.ColumnMap
Set the foreign key for this column.
setForeignKey(String, String) - Method in class org.apache.torque.map.ColumnMap
Set the foreign key for this column.
setFromClause(UniqueList) - Method in class org.apache.torque.util.Query
Set the from clause.
setFunction(String) - Method in class org.apache.torque.util.functions.Aggregate.AgregateFunction
Set the function to use.
setHaving(String) - Method in class org.apache.torque.util.Query
Set the having clause.
setIdTable(TableMap) - Method in class org.apache.torque.map.DatabaseMap
Set the ID table for this database.
setIdTable(String) - Method in class org.apache.torque.map.DatabaseMap
Set the ID table for this database.
setIgnoreCase(boolean) - Method in class org.apache.torque.util.Criteria.Criterion
Sets ignore case.
setIgnoreCase(boolean) - Method in class org.apache.torque.util.Criteria
Sets ignore case.
setInheritance(String) - Method in class org.apache.torque.map.ColumnMap
Sets the inheritance type.
setInputValidator(String) - Method in class org.apache.torque.map.ColumnMap
Sets the input validator class name.
setInstance(TorqueInstance) - Static method in class org.apache.torque.Torque
Sets the single TorqueInstance used by this class.
setJavaName(String) - Method in class org.apache.torque.map.ColumnMap
Sets the Java Name for this column.
setJavaName(String) - Method in class org.apache.torque.map.TableMap
Set the Java name of the table as defined by generator/XML.
setJavaNamingMethod(String) - Method in class org.apache.torque.map.ColumnMap
Sets the java naming method for this column.
setJavaType(String) - Method in class org.apache.torque.map.ColumnMap
Sets the java type of this column.
setKey(String) - Method in class org.apache.torque.map.InheritanceMap
Sets the key by which this inheritanceMap is activated.
setLimit(int) - Method in class org.apache.torque.util.Criteria
Set limit.
setLimit(String) - Method in class org.apache.torque.util.Query
Set the limit number.
setManagerClass(Class) - Method in class org.apache.torque.map.TableMap
Sets the manager class for this table.
setMemoryPageLimit(int) - Static method in class org.apache.torque.util.LargeSelect
Sets the multiplier that will be used to compute the memory limit when a constructor with no memory page limit is used - the memory limit will be this number multiplied by the page size.
setModified(boolean) - Method in class org.apache.torque.om.BaseObject
Sets the modified state for the object.
setModified(boolean) - Method in interface org.apache.torque.om.Persistent
Sets the modified state for the object.
setMoreIndicator(String) - Static method in class org.apache.torque.util.LargeSelect
Provide a way of changing the more pages/records indicator.
setNew(boolean) - Method in class org.apache.torque.om.BaseObject
Setter for the isNew attribute.
setNew(boolean) - Method in interface org.apache.torque.om.Persistent
Setter for the isNew attribute.
setNotNull(boolean) - Method in class org.apache.torque.map.ColumnMap
Set if this column may be null.
setOffset(int) - Method in class org.apache.torque.util.Criteria
Set offset.
setOffset(String) - Method in class org.apache.torque.util.Query
Set the offset number.
setOMClass(Class) - Method in class org.apache.torque.manager.AbstractBaseManager
Set the Class that will be instantiated by this manager
setOMClass(Class) - Method in class org.apache.torque.map.TableMap
Sets the OM root class for this table.
setPeerClass(Class) - Method in class org.apache.torque.map.TableMap
Sets the Peer class for this table.
setPk(boolean) - Method in class org.apache.torque.map.ColumnMap
Sets whether this column is a primary key.
setPosition(int) - Method in class org.apache.torque.map.ColumnMap
Sets the position (one based) of this column in the table.
setPostLimit(String) - Method in class org.apache.torque.util.Query
Set the Post limit String.
setPrefix(String) - Method in class org.apache.torque.map.TableMap
Set table prefix name.
setPreLimit(String) - Method in class org.apache.torque.util.Query
Get the Pre limit String.
setPrimaryKey(boolean) - Method in class org.apache.torque.map.ColumnMap
Set if this column is a primary key or not.
setPrimaryKey(String) - Method in class org.apache.torque.om.BaseObject
Sets the PrimaryKey for the object.
setPrimaryKey(SimpleKey[]) - Method in class org.apache.torque.om.BaseObject
Sets the PrimaryKey for the object as an Object.
setPrimaryKey(ObjectKey) - Method in class org.apache.torque.om.BaseObject
Sets the PrimaryKey for the object as an Object.
setPrimaryKey(ObjectKey) - Method in interface org.apache.torque.om.Persistent
Sets the PrimaryKey for the object.
setPrimaryKey(String) - Method in interface org.apache.torque.om.Persistent
Sets the PrimaryKey for the object.
setPrimaryKeyMethod(String) - Method in class org.apache.torque.map.TableMap
Sets the method used to generate a key for this table.
setPrimaryKeyMethodInfo(Object) - Method in class org.apache.torque.map.TableMap
Sets the pk information needed to generate a key
setProperty(String, Configuration, Object) - Method in class org.apache.torque.dsfactory.AbstractDataSourceFactory
Encapsulates setting configuration properties on DataSource objects.
setProtected(boolean) - Method in class org.apache.torque.map.ColumnMap
Sets whether getters and setters should be generated with the access modifier "protected" rather than "public".
setRegion(String) - Method in class org.apache.torque.manager.AbstractBaseManager
Set the value of region.
setRowcount(String) - Method in class org.apache.torque.util.Query
Set the rowcount number.
setScale(int) - Method in class org.apache.torque.map.ColumnMap
 
setSchema(String, String) - Method in interface org.apache.torque.avalon.Torque
Sets the current schema for a database connection
setSchema(String) - Method in class org.apache.torque.Database
Sets the schema for this database.
setSchema(String) - Method in class org.apache.torque.dsfactory.AbstractDataSourceFactory
Sets the current schema for the database connection
setSchema(String) - Method in interface org.apache.torque.dsfactory.DataSourceFactory
Deprecated. use DatabaseInfo.setSchema() instead. Will be removed in a future version of Torque.
setSchema(String, String) - Static method in class org.apache.torque.Torque
Sets the current schema for a database connection
setSchema(String, String) - Method in class org.apache.torque.TorqueInstance
Sets the current schema for a database connection
setSearchParam(String, String) - Method in class org.apache.torque.util.LargeSelect
Set a search parameter.
setSelectClause(UniqueList) - Method in class org.apache.torque.util.Query
Set the columns.
setSelectModifiers(UniqueList) - Method in class org.apache.torque.util.Query
Set the modifiers.
setSingleRecord(boolean) - Method in class org.apache.torque.util.Criteria
Set single record? Set this to true if you expect the query to result in only a single result record (the default behaviour is to throw a TorqueException if multiple records are returned when the query is executed).
setSize(int) - Method in class org.apache.torque.map.ColumnMap
Set the size of this column.
setTable(String) - Method in class org.apache.torque.util.Criteria.Criterion
Set the table name.
setTorqueType(String) - Method in class org.apache.torque.map.ColumnMap
Set the Torque type of this column.
setType(Object) - Method in class org.apache.torque.map.ColumnMap
Set the type of this column.
setUseInheritance(boolean) - Method in class org.apache.torque.map.ColumnMap
Sets whether this column uses inheritance subclasses.
setUseInheritance(boolean) - Method in class org.apache.torque.map.TableMap
Sets whether this table uses inheritance.
setUseManager(boolean) - Method in class org.apache.torque.map.TableMap
Sets whether managers are used for this table.
setUsePrimitive(boolean) - Method in class org.apache.torque.map.ColumnMap
Sets whether this colum uses primitive values rather than objects.
setUseTransaction(boolean) - Method in class org.apache.torque.util.Criteria
Will force the sql represented by this criteria to be executed within a transaction.
setValue(SimpleKey[]) - Method in class org.apache.torque.om.ComboKey
Sets the internal representation using a SimpleKey array.
setValue(String) - Method in class org.apache.torque.om.ComboKey
Sets the internal representation using a String of the form produced by the toString method.
setValue(ComboKey) - Method in class org.apache.torque.om.ComboKey
Sets the internal representation using a ComboKey.
setValue(String) - Method in class org.apache.torque.om.DateKey
Sets the internal representation to a String
setValue(DateKey) - Method in class org.apache.torque.om.DateKey
Sets the internal representation to the same object used by key.
setValue(String) - Method in class org.apache.torque.om.NumberKey
Sets the internal representation using a String representation of a number
setValue(BigDecimal) - Method in class org.apache.torque.om.NumberKey
Sets the underlying object
setValue(NumberKey) - Method in class org.apache.torque.om.NumberKey
Sets the internal representation to the same object used by key.
setValue(String) - Method in class org.apache.torque.om.ObjectKey
Reset the underlying object using a String.
setValue(String) - Method in class org.apache.torque.om.StringKey
Sets the internal representation to a String
setValue(StringKey) - Method in class org.apache.torque.om.StringKey
Sets the internal representation to the same object used by key.
setValue(Object) - Method in class org.apache.torque.util.Criteria.Criterion
Set the value of the criterion.
setVillageValue(Criteria, String, Record, String) - Static method in class org.apache.torque.util.VillageUtils
Factored out setting of a Village Record column from a Criteria Key
setWhereClause(UniqueList) - Method in class org.apache.torque.util.Query
Set the where clause.
SharedPoolDataSourceFactory - Class in org.apache.torque.dsfactory
A factory that looks up the DataSource using the JDBC2 pool methods.
SharedPoolDataSourceFactory() - Constructor for class org.apache.torque.dsfactory.SharedPoolDataSourceFactory
 
shortValue() - Method in class org.apache.torque.om.NumberKey
Returns the value of this NumberKey as a short.
shutdown() - Static method in class org.apache.torque.Torque
Shuts down the service.
shutdown() - Method in class org.apache.torque.TorqueInstance
Shuts down the service.
SimpleKey - Class in org.apache.torque.om
This empty class marks an ObjectKey as being capable of being represented as a single column in a database.
SimpleKey() - Constructor for class org.apache.torque.om.SimpleKey
 
SQLBuilder - Class in org.apache.torque.util
Factored out code that is used to process SQL tables.
SQLBuilder.QueryCallback - Interface in org.apache.torque.util
Inner Interface that defines the Callback method for the buildQuery Criterion evaluation
SQLBuilder.TableCallback - Interface in org.apache.torque.util
Inner Interface that defines the Callback method for the Table creation loop.
SqlEnum - Class in org.apache.torque.util
A typesafe enum of SQL string fragments.
SqlExpression - Class in org.apache.torque.util
This class represents a part of an SQL query found in the WHERE section.
SQLFunction - Interface in org.apache.torque.util.functions
Define the basic methods that classes that support SQL Functions need to implement for Classes that use them.
startIDBroker() - Method in class org.apache.torque.Database
Creates the IDBroker for this DatabaseMap and starts it for the given database.
startIdBroker() - Method in class org.apache.torque.map.DatabaseMap
Deprecated. Will be removed in a future version of Torque. Use DatabaseInfo.startIdBroker() instead.
STD_SEPARATOR_CHAR - Static variable in class org.apache.torque.map.DatabaseMap
The character used by most implementations as the separator between name elements.
stop() - Method in class org.apache.torque.oid.IDBroker
Shuts down the IDBroker thread.
StringKey - Class in org.apache.torque.om
This class can be used as an ObjectKey to uniquely identify an object within an application where the id consists of a single entity such a GUID or the value of a db row's primary key.
StringKey() - Constructor for class org.apache.torque.om.StringKey
Creates an SimpleKey whose internal representation will be set later, through a set method
StringKey(String) - Constructor for class org.apache.torque.om.StringKey
Creates a StringKey whose internal representation is a String
StringKey(StringKey) - Constructor for class org.apache.torque.om.StringKey
Creates a StringKey that is equivalent to key.
SUM - Static variable in class org.apache.torque.util.functions.FunctionEnum
The SUM( [Distinct] EXPR ) function id
sum(String, Object, boolean) - Static method in class org.apache.torque.util.functions.FunctionFactory
Create a SUM SQL function implementation.
sum(Object) - Static method in class org.apache.torque.util.functions.FunctionFactory
Convenience method for creating a non-distinct function that uses the default DB.
summarize(Criteria) - Method in class org.apache.torque.util.SummaryHelper
Return a list of ListOrderedMapCI objects with the results of the summary query.
summarize(Criteria, Connection) - Method in class org.apache.torque.util.SummaryHelper
Return a list of ListOrderedMapCI objects with the results of the summary query.
SummaryHelper - Class in org.apache.torque.util
A utility to help produce aggregate summary information about a table.
SummaryHelper() - Constructor for class org.apache.torque.util.SummaryHelper
Simple constructor
supportsNativeLimit() - Method in class org.apache.torque.adapter.AbstractDBAdapter
This method is used to check whether the database natively supports limiting the size of the resultset.
supportsNativeLimit() - Method in interface org.apache.torque.adapter.DB
This method is used to check whether the database natively supports limiting the size of the resultset.
supportsNativeLimit() - Method in class org.apache.torque.adapter.DBDB2App
Return true for DB2
supportsNativeLimit() - Method in class org.apache.torque.adapter.DBMM
Return true for MySQL
supportsNativeLimit() - Method in class org.apache.torque.adapter.DBOracle
Return true for Oracle
supportsNativeLimit() - Method in class org.apache.torque.adapter.DBPostgres
Return true for PostgreSQL
supportsNativeLimit() - Method in class org.apache.torque.adapter.DBSybase
Return true for Sybase
supportsNativeOffset() - Method in class org.apache.torque.adapter.AbstractDBAdapter
This method is used to check whether the database natively supports returning results starting at an offset position other than 0.
supportsNativeOffset() - Method in interface org.apache.torque.adapter.DB
This method is used to check whether the database natively supports returning results starting at an offset position other than 0.
supportsNativeOffset() - Method in class org.apache.torque.adapter.DBDB2App
Return true for DB2
supportsNativeOffset() - Method in class org.apache.torque.adapter.DBMM
Return true for MySQL
supportsNativeOffset() - Method in class org.apache.torque.adapter.DBOracle
Return true for Oracle
supportsNativeOffset() - Method in class org.apache.torque.adapter.DBPostgres
Return true for PostgreSQL

T

TABLE_ID - Static variable in class org.apache.torque.oid.IDBroker
Fully qualified ID column name
TABLE_NAME - Static variable in class org.apache.torque.oid.IDBroker
Fully qualified Table_Name column name
TABLE_NAME - Static variable in class org.apache.torque.util.BasePeer
Classes that implement this class should override this value.
TableMap - Class in org.apache.torque.map
TableMap is used to model a table in a database.
TableMap() - Constructor for class org.apache.torque.map.TableMap
Required by proxy.
TableMap(String, int, DatabaseMap) - Constructor for class org.apache.torque.map.TableMap
Constructor.
TableMap(String, DatabaseMap) - Constructor for class org.apache.torque.map.TableMap
Constructor.
TableMap(String, String, DatabaseMap) - Constructor for class org.apache.torque.map.TableMap
Constructor.
throwMalformedColumnNameException(String, String) - Static method in class org.apache.torque.util.SQLBuilder
Throws a TorqueException with the malformed column name error message.
TIME_BETWEEN_LOOKUPS_KEY - Static variable in class org.apache.torque.dsfactory.JndiDataSourceFactory
Key for the configuration property which contains the time between two jndi lookups.
TooManyRowsException - Exception in org.apache.torque
This exception indicates that more rows were returned than expected.
TooManyRowsException() - Constructor for exception org.apache.torque.TooManyRowsException
Constructs a new TorqueException without specified detail message.
TooManyRowsException(String) - Constructor for exception org.apache.torque.TooManyRowsException
Constructs a new TorqueException with specified detail message.
TooManyRowsException(Throwable) - Constructor for exception org.apache.torque.TooManyRowsException
Constructs a new TorqueException with specified nested Throwable.
TooManyRowsException(String, Throwable) - Constructor for exception org.apache.torque.TooManyRowsException
Constructs a new TorqueException with specified detail message and nested Throwable.
Torque - Interface in org.apache.torque.avalon
Avalon role interface for Torque.
Torque - Class in org.apache.torque
A static facade wrapper around the Torque implementation (which is in TorqueInstance).
Torque() - Constructor for class org.apache.torque.Torque
C'tor for usage with the Stratum Lifecycle.
TORQUE_KEY - Static variable in class org.apache.torque.Torque
The prefix for all configuration keys used by Torque.
TorqueComponent - Class in org.apache.torque.avalon
Avalon component for Torque.
TorqueComponent() - Constructor for class org.apache.torque.avalon.TorqueComponent
 
TorqueException - Exception in org.apache.torque
The base class of all exceptions thrown by Torque.
TorqueException() - Constructor for exception org.apache.torque.TorqueException
Constructs a new TorqueException without specified detail message.
TorqueException(String) - Constructor for exception org.apache.torque.TorqueException
Constructs a new TorqueException with specified detail message.
TorqueException(Throwable) - Constructor for exception org.apache.torque.TorqueException
Constructs a new TorqueException with specified nested Throwable.
TorqueException(String, Throwable) - Constructor for exception org.apache.torque.TorqueException
Constructs a new TorqueException with specified detail message and nested Throwable.
TorqueInstance - Class in org.apache.torque
The core of Torque's implementation.
TorqueInstance() - Constructor for class org.apache.torque.TorqueInstance
Creates a new instance with default configuration.
TorqueRuntimeException - Exception in org.apache.torque
This is a base class of runtime exeptions thrown by Torque.
TorqueRuntimeException() - Constructor for exception org.apache.torque.TorqueRuntimeException
Constructs a new TorqueRuntimeException without specified detail message.
TorqueRuntimeException(String) - Constructor for exception org.apache.torque.TorqueRuntimeException
Constructs a new TorqueRuntimeException with specified detail message.
TorqueRuntimeException(Throwable) - Constructor for exception org.apache.torque.TorqueRuntimeException
Constructs a new TorqueRuntimeException with specified nested Throwable.
TorqueRuntimeException(String, Throwable) - Constructor for exception org.apache.torque.TorqueRuntimeException
Constructs a new TorqueRuntimeException with specified detail message and nested Throwable.
toSQL() - Method in class org.apache.torque.util.functions.AbstractFunction
This should return the SQL string that can be used when constructing the query.
toSQL() - Method in class org.apache.torque.util.functions.Aggregate.AgregateFunction
Generate the SQL for this function.
toSQL() - Method in interface org.apache.torque.util.functions.SQLFunction
This should return the SQL string that can be used when constructing the query.
toString() - Method in class org.apache.torque.manager.MethodCacheKey
 
toString() - Method in class org.apache.torque.om.ComboKey
A String that may consist of one section or multiple sections separated by a colon.
toString() - Method in class org.apache.torque.om.DateKey
get a String representation
toString() - Method in class org.apache.torque.om.NumberKey
Invokes the toString() method on the object.
toString() - Method in class org.apache.torque.om.StringKey
get a String representation
toString() - Method in class org.apache.torque.util.Criteria.Criterion
Build a string representation of the Criterion.
toString() - Method in class org.apache.torque.util.Criteria.Join
returns a String representation of the class, mainly for debuggung purposes
toString() - Method in class org.apache.torque.util.Criteria
Build a string representation of the Criteria.
toString() - Method in class org.apache.torque.util.functions.FunctionEnum
 
toString() - Method in class org.apache.torque.util.LargeSelect
Provide something useful for debugging purposes.
toString() - Method in class org.apache.torque.util.Query.FromElement
Returns a SQL representation of the element
toString() - Method in class org.apache.torque.util.Query
Outputs the query statement.
toString() - Method in class org.apache.torque.util.SqlEnum
 
toStringBuffer(StringBuffer) - Method in class org.apache.torque.util.Query
 
toUpperCase(String) - Method in class org.apache.torque.adapter.AbstractDBAdapter
This method is used to ignore case.
toUpperCase(String) - Method in interface org.apache.torque.adapter.DB
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBAxion
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBCloudscape
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBDB2400
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBDB2App
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBDerby
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBFirebird
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBHypersonicSQL
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBInformix
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBInstantDB
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBInterbase
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBMM
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBNone
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBOdbc
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBOracle
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBPostgres
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBSapDB
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBSybase
This method is used to ignore case.
toUpperCase(String) - Method in class org.apache.torque.adapter.DBWeblogic
This method is used to ignore case.
Transaction - Class in org.apache.torque.util
Refactored begin/commit/rollback transaction methods away from the BasePeer.

U

UCASE - Static variable in class org.apache.torque.adapter.DBDB2400
UpperCase/IgnoreCase sql function in DB2/400
UniqueList - Class in org.apache.torque.util
List with unique entries.
UniqueList() - Constructor for class org.apache.torque.util.UniqueList
Constructs an empty UniqueList.
UniqueList(UniqueList) - Constructor for class org.apache.torque.util.UniqueList
Copy-constructor.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.AbstractDBAdapter
Unlocks the specified table.
unlockTable(Connection, String) - Method in interface org.apache.torque.adapter.DB
Unlocks the specified table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBAxion
Unlocks the specified table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBCloudscape
Unlocks the specified table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBDB2App
Unlocks the specified table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBDerby
Unlocks the specified table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBFirebird
Unlocks the specified table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBHypersonicSQL
Unlocks the specified table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBInformix
The method is used to unlock a table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBInstantDB
Unlocks the specified table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBInterbase
Unlocks the specified table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBMM
Unlocks the specified table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBNone
Unlocks the specified table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBOdbc
Unlocks the specified table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBOracle
Unlocks the specified table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBPostgres
Unlocks the specified table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBSapDB
Unlocks the specified table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBSybase
Unlocks the specified table.
unlockTable(Connection, String) - Method in class org.apache.torque.adapter.DBWeblogic
Unlocks the specified table.
useEscapeClauseForLike() - Method in class org.apache.torque.adapter.AbstractDBAdapter
Whether an escape clause in like should be used.
useEscapeClauseForLike() - Method in interface org.apache.torque.adapter.DB
Whether an escape clause in like should be used.
useEscapeClauseForLike() - Method in class org.apache.torque.adapter.DBDerby
Whether an escape clause in like should be used.
useEscapeClauseForLike() - Method in class org.apache.torque.adapter.DBFirebird
Whether an escape clause in like should be used.
useEscapeClauseForLike() - Method in class org.apache.torque.adapter.DBHypersonicSQL
Whether an escape clause in like should be used.
useEscapeClauseForLike() - Method in class org.apache.torque.adapter.DBInterbase
Whether an escape clause in like should be used.
useEscapeClauseForLike() - Method in class org.apache.torque.adapter.DBOracle
Whether an escape clause in like should be used.
useEscapeClauseForLike() - Method in class org.apache.torque.adapter.DBSybase
Whether an escape clause in like should be used.
useIlike() - Method in class org.apache.torque.adapter.AbstractDBAdapter
Whether ILIKE should be used for case insensitive like clauses.
useIlike() - Method in interface org.apache.torque.adapter.DB
Whether ILIKE should be used for case insensitive like clauses.
useIlike() - Method in class org.apache.torque.adapter.DBPostgres
Whether ILIKE should be used for case insensitive like clauses.

V

VALID_ID_METHODS - Static variable in class org.apache.torque.map.TableMap
The list of valid ID generation methods.
validFields - Variable in class org.apache.torque.manager.AbstractBaseManager
 
VillageUtils - Class in org.apache.torque.util
Some Village related code factored out of the BasePeer.

A B C D E F G H I J K L M N O P Q R S T U V

Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.